aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/setup
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2012-06-09 14:34:58 +0200
committerKevin Chabowski <kevin@kch42.de>2012-06-09 14:34:58 +0200
commit6a12b5da5330a3cf1ea68c4c9683995098376467 (patch)
tree75aabae6e6f6bf125683daf9fbcb3a8292d84f08 /ratatoeskr/setup
parent1454fbb1633db4dc44049bde6cc9052bccc4db0d (diff)
downloadratatoeskr-cms-6a12b5da5330a3cf1ea68c4c9683995098376467.tar.gz
ratatoeskr-cms-6a12b5da5330a3cf1ea68c4c9683995098376467.tar.bz2
ratatoeskr-cms-6a12b5da5330a3cf1ea68c4c9683995098376467.zip
ACL class implemented.
Diffstat (limited to 'ratatoeskr/setup')
-rw-r--r--ratatoeskr/setup/create_tables.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/ratatoeskr/setup/create_tables.php b/ratatoeskr/setup/create_tables.php
index 97a4cd5..521ae00 100644
--- a/ratatoeskr/setup/create_tables.php
+++ b/ratatoeskr/setup/create_tables.php
@@ -162,6 +162,13 @@ CREATE TABLE IF NOT EXISTS `PREFIX_article_extradata` (
`key` text COLLATE utf8_unicode_ci NOT NULL,
`value` text COLLATE utf8_unicode_ci NOT NULL
) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
+
+CREATE TABLE IF NOT EXISTS `PREFIX_acls` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `type` int(11) NOT NULL,
+ `privileges` text COLLATE utf8_unicode_ci NOT NULL,
+ PRIMARY KEY (`id`)
+) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SQL;
function create_mysql_tables()