aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/setup
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-12-18 14:25:13 +0100
committerKevin Chabowski <kevin@kch42.de>2011-12-18 14:25:13 +0100
commit7d6a5eca4e0a38ae615634542859d29ab79c94e8 (patch)
tree371d03aed7bbbc87a005ac2d33e6138163d9e0b8 /ratatoeskr/setup
parent58ca56ac72724ed86690cbb75f91cdde8f5b2737 (diff)
downloadratatoeskr-cms-7d6a5eca4e0a38ae615634542859d29ab79c94e8.tar.gz
ratatoeskr-cms-7d6a5eca4e0a38ae615634542859d29ab79c94e8.tar.bz2
ratatoeskr-cms-7d6a5eca4e0a38ae615634542859d29ab79c94e8.zip
Modified db-model for plugins and fixed a bug in the frontend.
* The db-model for plugins was updated, so it is compatible with the plugin packages. * Preview of comments now works again.
Diffstat (limited to 'ratatoeskr/setup')
-rw-r--r--ratatoeskr/setup/create_tables.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/ratatoeskr/setup/create_tables.php b/ratatoeskr/setup/create_tables.php
index 8405ade..543a7e3 100644
--- a/ratatoeskr/setup/create_tables.php
+++ b/ratatoeskr/setup/create_tables.php
@@ -61,17 +61,21 @@ CREATE TABLE `PREFIX_multilingual` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-CREATE TABLE `PREFIX_plugins` (
+CREATE TABLE `ratatoeskr_plugins` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text COLLATE utf8_unicode_ci NOT NULL,
- `class` text COLLATE utf8_unicode_ci NOT NULL,
- `version` text COLLATE utf8_unicode_ci NOT NULL,
`author` text COLLATE utf8_unicode_ci NOT NULL,
- `author_url` text COLLATE utf8_unicode_ci NOT NULL,
- `description` text COLLATE utf8_unicode_ci NOT NULL,
+ `versiontext` text COLLATE utf8_unicode_ci NOT NULL,
+ `versioncount` int(11) NOT NULL,
+ `short_description` text COLLATE utf8_unicode_ci NOT NULL,
+ `updatepath` text COLLATE utf8_unicode_ci NOT NULL,
+ `web` text COLLATE utf8_unicode_ci NOT NULL,
`help` text COLLATE utf8_unicode_ci NOT NULL,
- `phpcode` text COLLATE utf8_unicode_ci NOT NULL,
+ `code` text COLLATE utf8_unicode_ci NOT NULL,
+ `classname` text COLLATE utf8_unicode_ci NOT NULL,
`active` tinyint(4) NOT NULL,
+ `installed` tinyint(4) NOT NULL,
+ `added` bigint(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;