From c944edfb50e81a8880b02ee5496a29323021331e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 16 Aug 2009 10:36:23 -0400 Subject: [PATCH] Add table for configuration settings Add a table for configuration settings. --- db/laconica.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/db/laconica.sql b/db/laconica.sql index 56bd4b1e38..1662ef7a8b 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; -- 2.39.2