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.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql
index adb33318b..d42168f89 100644
--- a/engine/schema/mysql.sql
+++ b/engine/schema/mysql.sql
@@ -73,6 +73,14 @@ INSERT INTO `prefix_access_groups` (`id`, `name`, `site_guid`) VALUES
(1, 'LOGGED_IN', 0),
(2, 'PUBLIC', 0);
+-- Access groups
+CREATE TABLE `prefix_access_group_membership` (
+ `user_guid` int(11) NOT NULL,
+ `access_group_id` int(11) NOT NULL,
+ PRIMARY KEY (`user_id`,`access_group_id`)
+) ENGINE=MyISAM ;
+
+
--
-- *** Entity superclass details ***
-- NB: Asside from GUID, these should now have any field names incommon with the entities table.