From 2ed91ced7f9885b739bbb5439b12d8df7dec5543 Mon Sep 17 00:00:00 2001 From: ben Date: Thu, 17 Jul 2008 16:45:19 +0000 Subject: access_groups -> access_collections git-svn-id: https://code.elgg.org/elgg/trunk@1459 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/schema/mysql.sql | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'engine/schema') diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql index a0fc6a0ff..5fb346918 100644 --- a/engine/schema/mysql.sql +++ b/engine/schema/mysql.sql @@ -70,8 +70,8 @@ CREATE TABLE `prefix_entity_relationships` ( -- *** Access controls *** -- --- Table structure for table `access_groups` -CREATE TABLE `prefix_access_groups` ( +-- Table structure for table `access_collections` +CREATE TABLE `prefix_access_collections` ( `id` int(11) NOT NULL, `name` varchar(16) NOT NULL, `owner_guid` bigint(20) unsigned NOT NULL, @@ -80,18 +80,18 @@ CREATE TABLE `prefix_access_groups` ( KEY `name` (`name`) ) ; --- Dumping data for table `access_groups` -INSERT INTO `prefix_access_groups` (`id`, `name`, `site_guid`) VALUES +-- Dumping data for table `access_collections` +INSERT INTO `prefix_access_collections` (`id`, `name`, `site_guid`) VALUES (0, 'PRIVATE', 0), (1, 'LOGGED_IN', 0), (2, 'PUBLIC', 0); -- Access containers -CREATE TABLE `prefix_access_group_membership` ( +CREATE TABLE `prefix_access_collection_membership` ( `user_guid` int(11) NOT NULL, - `access_group_id` int(11) NOT NULL, - PRIMARY KEY (`user_guid`,`access_group_id`) + `access_collection_id` int(11) NOT NULL, + PRIMARY KEY (`user_guid`,`access_collection_id`) ) ; -- cgit v1.2.3