aboutsummaryrefslogtreecommitdiff
path: root/engine/schema/mysql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'engine/schema/mysql.sql')
-rw-r--r--engine/schema/mysql.sql14
1 files changed, 7 insertions, 7 deletions
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`)
) ;