diff options
Diffstat (limited to 'engine/schema')
-rw-r--r-- | engine/schema/mysql.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql index f037ac32c..5c71a3192 100644 --- a/engine/schema/mysql.sql +++ b/engine/schema/mysql.sql @@ -14,6 +14,14 @@ -- *** The main tables ***
--
+-- Site configuration.
+CREATE TABLE `prefix_config` (
+ `name` varchar(32) NOT NULL,
+ `value` text NOT NULL,
+ `site_guid` int(11) NOT NULL,
+ PRIMARY KEY (`name`,`site_guid`)
+);
+
-- Define entities.
CREATE TABLE `prefix_entities` (
`guid` bigint(20) unsigned NOT NULL auto_increment,
|