aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/setup
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-09-22 00:34:48 +0200
committerKevin Chabowski <kevin@kch42.de>2011-09-22 00:34:48 +0200
commitf48aa098e588ce56c91ae8a8e6e69ca0bb64cc69 (patch)
tree3784472cddbbaa4add87ef0b482c9544e2adfbed /ratatoeskr/setup
parentcd448c43cbc882567c647893f8fa7f666a84427a (diff)
downloadratatoeskr-cms-f48aa098e588ce56c91ae8a8e6e69ca0bb64cc69.tar.gz
ratatoeskr-cms-f48aa098e588ce56c91ae8a8e6e69ca0bb64cc69.tar.bz2
ratatoeskr-cms-f48aa098e588ce56c91ae8a8e6e69ca0bb64cc69.zip
We do not need ACLs at the moment (i.e. I'm too lazy)...
Diffstat (limited to 'ratatoeskr/setup')
-rw-r--r--ratatoeskr/setup/create_tables.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/ratatoeskr/setup/create_tables.php b/ratatoeskr/setup/create_tables.php
index aea5fcb..b17d6f0 100644
--- a/ratatoeskr/setup/create_tables.php
+++ b/ratatoeskr/setup/create_tables.php
@@ -4,12 +4,6 @@
$sql = <<<SQL
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-CREATE TABLE `PREFIX_acl` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `acl_json` text COLLATE utf8_unicode_ci NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-
CREATE TABLE `PREFIX_articles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`urltitle` text COLLATE utf8_unicode_ci NOT NULL,
@@ -18,7 +12,6 @@ CREATE TABLE `PREFIX_articles` (
`excerpt` int(11) NOT NULL,
`meta` text COLLATE utf8_unicode_ci NOT NULL,
`custom` text COLLATE utf8_unicode_ci NOT NULL,
- `acl` int(11) NOT NULL,
`article_image` int(11) NOT NULL,
`status` int(11) NOT NULL,
`section` int(11) NOT NULL,
@@ -60,7 +53,6 @@ CREATE TABLE `PREFIX_images` (
`name` text COLLATE utf8_unicode_ci NOT NULL,
`alt` int(11) NOT NULL,
`file` text COLLATE utf8_unicode_ci NOT NULL,
- `acl` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
@@ -107,7 +99,6 @@ CREATE TABLE `PREFIX_styles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text COLLATE utf8_unicode_ci NOT NULL,
`code` text COLLATE utf8_unicode_ci NOT NULL,
- `acl` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;