Changeset 15905 for trunk/install
- Timestamp:
- 01/22/12 23:18:49 (4 months ago)
- File:
-
- 1 edited
-
trunk/install/sql/v70.sql (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/sql/v70.sql
r15903 r15905 4046 4046 `display_name` varchar(32) NOT NULL, 4047 4047 `input_name` varchar(32) NOT NULL, 4048 ` hidden_for_levels` int(10) unsigned NOT NULL,4048 `visible_for_levels` int(11) NOT NULL DEFAULT '2147483647', 4049 4049 `active` tinyint(4) NOT NULL DEFAULT '0', 4050 4050 `order` int(11) NOT NULL, … … 4564 4564 `onclick` varchar(255) NOT NULL, 4565 4565 `target` varchar(255) NOT NULL, 4566 `icon` varchar(255) NOT NULL, 4566 `icon` varchar(255) NOT NULL, 4567 4567 `visible_for_levels` int(11) NOT NULL DEFAULT '2147483647', 4568 4568 `active` tinyint(4) NOT NULL DEFAULT '1', … … 4571 4571 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 4572 4572 4573 INSERT INTO `sys_menu ` (`set_name`, `module`, `name`, `title`, `link`, `onclick`, `target`, `icon`, `hidden_for_levels`, `active`, `order`) VALUES4574 ('sys_site', 'system', 'home', '_Home', 'index.php', '', '', '', 0, 1, 1),4575 ('sys_site', 'system', 'tags', '_Tags', 'tags.php', '', '', '', 0, 1, 2),4576 ('sys_site', 'system', 'categories', '_Categories', 'categories.php', '', '', '', 0, 1, 3),4577 ('sys_site', 'system', 'join', '_Join', 'join.php', '', '', '', 4294967294, 1, 4),4573 INSERT INTO `sys_menu_items` (`set_name`, `module`, `name`, `title`, `link`, `onclick`, `target`, `icon`, `visible_for_levels`, `active`, `order`) VALUES 4574 ('sys_site', 'system', 'home', '_Home', 'index.php', '', '', '', 2147483647, 1, 1), 4575 ('sys_site', 'system', 'tags', '_Tags', 'tags.php', '', '', '', 2147483647, 1, 2), 4576 ('sys_site', 'system', 'categories', '_Categories', 'categories.php', '', '', '', 2147483647, 1, 3), 4577 ('sys_site', 'system', 'join', '_Join', 'join.php', '', '', '', 1, 1, 4), 4578 4578 ('sys_site', 'system', 'login', '_Login', 'member.php', '', '', '', 1, 1, 5), 4579 ('sys_site', 'system', 'about', '_About', 'about_us.php', '', '', '', 0, 1, 6),4580 ('sys_site', 'system', 'help', '_help', 'help.php', '', '', '', 0, 1, 7),4581 ('sys_site', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 0, 1, 8),4582 ('sys_footer', 'system', 'about', '_About', 'about_us.php', '', '', '', 0, 1, 1),4583 ('sys_footer', 'system', 'help', '_help', 'help.php', '', '', '', 0, 1, 2),4584 ('sys_footer', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 0, 1, 3);4579 ('sys_site', 'system', 'about', '_About', 'about_us.php', '', '', '', 2147483647, 1, 6), 4580 ('sys_site', 'system', 'help', '_help', 'help.php', '', '', '', 2147483647, 1, 7), 4581 ('sys_site', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 2147483647, 1, 8), 4582 ('sys_footer', 'system', 'about', '_About', 'about_us.php', '', '', '', 2147483647, 1, 1), 4583 ('sys_footer', 'system', 'help', '_help', 'help.php', '', '', '', 2147483647, 1, 2), 4584 ('sys_footer', 'system', 'contact', '_Contact', 'contact.php', '', '', '', 2147483647, 1, 3); 4585 4585 4586 4586
Note: See TracChangeset
for help on using the changeset viewer.