Changeset 15704 for trunk/install
- Timestamp:
- 11/28/11 01:06:42 (6 months ago)
- File:
-
- 1 edited
-
trunk/install/sql/v70.sql (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/sql/v70.sql
r15700 r15704 1404 1404 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 1405 1405 1406 -- 1407 -- Dumping data for table `sys_localization_strings` 1408 -- 1409 1410 -- -------------------------------------------------------- 1411 -- 1412 -- Table structure for table `sys_acl_actions` 1413 -- 1406 1407 -- -------------------------------------------------------- 1408 1414 1409 1415 1410 CREATE TABLE `sys_acl_actions` ( 1416 1411 `ID` smallint(5) unsigned NOT NULL auto_increment, 1412 `Module` varchar(32) NOT NULL, 1417 1413 `Name` varchar(255) NOT NULL default '', 1418 1414 `AdditionalParamName` varchar(80) default NULL, 1415 `Title` varchar(255) NOT NULL, 1416 `Desc` text NOT NULL, 1417 `Countable` tinyint(4) NOT NULL DEFAULT '0', 1418 `DisabledForLevels` int(10) unsigned NOT NULL DEFAULT '3', 1419 1419 PRIMARY KEY (`ID`) 1420 1420 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 1421 1421 1422 -- 1423 -- Dumping data for table `sys_acl_actions` 1424 -- 1425 1426 INSERT INTO `sys_acl_actions` VALUES(1, 'send greetings', NULL); 1427 INSERT INTO `sys_acl_actions` VALUES(2, 'view profiles', NULL); 1428 INSERT INTO `sys_acl_actions` VALUES(3, 'vote', NULL); 1429 INSERT INTO `sys_acl_actions` VALUES(4, 'send messages', NULL); 1430 INSERT INTO `sys_acl_actions` VALUES(5, 'get other members emails', NULL); 1431 INSERT INTO `sys_acl_actions` VALUES(6, 'comments post', NULL); 1432 INSERT INTO `sys_acl_actions` VALUES(7, 'comments vote', NULL); 1433 INSERT INTO `sys_acl_actions` VALUES(8, 'comments edit own', NULL); 1434 INSERT INTO `sys_acl_actions` VALUES(9, 'comments remove own', NULL); 1435 1436 -- -------------------------------------------------------- 1437 1438 -- 1439 -- Table structure for table `sys_acl_actions_track` 1440 -- 1422 INSERT INTO `sys_acl_actions` (`ID`, `Module`, `Name`, `AdditionalParamName`, `Title`, `Desc`, `Countable`, `DisabledForLevels`) VALUES 1423 (1, 'system', 'send greetings', NULL, '_sys_send_greetings', '', 1, 3), 1424 (2, 'system', 'view profiles', NULL, '_sys_view_profile', '', 1, 0), 1425 (3, 'system', 'vote', NULL, '_sys_vote', '', 0, 0), 1426 (4, 'system', 'send messages', NULL, '_sys_messages', '', 0, 3), 1427 (5, 'system', 'get other members emails', NULL, '_sys_get_email', '', 1, 3), 1428 (6, 'system', 'comments post', NULL, '_sys_comments_post', '', 0, 3), 1429 (7, 'system', 'comments vote', NULL, '_sys_comments_vote', '', 0, 3), 1430 (8, 'system', 'comments edit own', NULL, '_sys_comments_edit_own', '', 0, 3), 1431 (9, 'system', 'comments remove own', NULL, '_sys_comments_remove_own', '', 0, 3); 1432 1441 1433 1442 1434 CREATE TABLE `sys_acl_actions_track` ( … … 1448 1440 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 1449 1441 1450 --1451 -- Dumping data for table `sys_acl_actions_track`1452 --1453 1454 1455 -- --------------------------------------------------------1456 1457 1458 --1459 -- Table structure for table `sys_acl_matrix`1460 --1461 1442 1462 1443 CREATE TABLE `sys_acl_matrix` ( … … 1470 1451 PRIMARY KEY (`IDLevel`,`IDAction`) 1471 1452 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 1472 1473 --1474 -- Dumping data for table `sys_acl_matrix`1475 --1476 1453 1477 1454 INSERT INTO `sys_acl_matrix` VALUES(1, 2, NULL, NULL, NULL, NULL, NULL); … … 1495 1472 INSERT INTO `sys_acl_matrix` VALUES(3, 9, NULL, NULL, NULL, NULL, NULL); 1496 1473 1497 -- --------------------------------------------------------1498 1499 --1500 -- Table structure for table `sys_acl_level_prices`1501 --1502 1474 1503 1475 CREATE TABLE `sys_acl_level_prices` ( … … 1510 1482 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 1511 1483 1512 --1513 -- Dumping data for table `sys_acl_level_prices`1514 --1515 1516 1517 -- --------------------------------------------------------1518 1519 --1520 -- Table structure for table `sys_acl_levels`1521 --1522 1484 1523 1485 CREATE TABLE `sys_acl_levels` ( … … 1537 1499 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 1538 1500 1539 -- 1540 -- Dumping data for table `sys_acl_levels` 1541 -- 1542 1543 INSERT INTO `sys_acl_levels` VALUES(1, 'Non-member', 'non-member.png', '', 'yes', 'no', 'no', 1); 1544 INSERT INTO `sys_acl_levels` VALUES(2, 'Standard', 'member.png', '', 'yes', 'no', 'no', 2); 1545 INSERT INTO `sys_acl_levels` VALUES(3, 'Promotion', 'promotion.png', '', 'yes', 'no', 'no', 3); 1501 INSERT INTO `sys_acl_levels` (`ID`, `Name`, `Icon`, `Description`, `Active`, `Purchasable`, `Removable`, `QuotaSize`, `QuotaNumber`, `QuotaMaxFileSize`, `Order`) VALUES 1502 (1, 'Non-member', 'non-member.png', '', 'yes', 'no', 'no', 1500000, 200, 0, 1), 1503 (2, 'Authenticated', 'authenticated.png', '', 'yes', 'no', 'no', 0, 0, 0, 2), 1504 (3, 'Standard', 'member.png', '', 'yes', 'no', 'no', 5000000, 5, 2000000, 3), 1505 (4, 'Premium', 'premium.png', '', 'yes', 'yes', 'no', 0, 0, 0, 4), 1506 (5, 'Moderator', 'moderator.png', '', 'yes', 'no', 'no', 0, 0, 0, 5), 1507 (6, 'Administrator', 'administrator.png', '', 'yes', 'no', 'no', 0, 0, 0, 5); 1508 1546 1509 1547 1510 -- --------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.