summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-08-21 16:17:06 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-08-21 16:17:06 -0400
commit8236037bf0bff51d4bc623646454f39eec4bc6ec (patch)
treeea895bd201a379e7cda2a7587ec862c46aeb3408 /db
parentb2664e1ae2e2cf66585cdd8696d88efdd053eb3b (diff)
parent538dcf2eefd2742f698cb812ae90c10971ef5e75 (diff)
Merge branch 'dbconfig' into 0.9.x
Conflicts: lib/common.php
Diffstat (limited to 'db')
-rw-r--r--db/laconica.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/laconica.sql b/db/laconica.sql
index 56bd4b1e3..1662ef7a8 100644
--- a/db/laconica.sql
+++ b/db/laconica.sql
@@ -547,3 +547,13 @@ create table deleted_notice (
index deleted_notice_profile_id_idx (profile_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+
+create table config (
+
+ section varchar(32) comment 'configuration section',
+ setting varchar(32) comment 'configuration setting',
+ value varchar(255) comment 'configuration value',
+
+ constraint primary key (section, setting)
+
+) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;