From: Brenda Wallace <shiny@cpan.org>
Date: Fri, 28 Aug 2009 08:33:49 +0000 (+1200)
Subject: added config table
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a0e41693e48be87feb0baa378c74e8309146c9c5;p=quix0rs-gnu-social.git

added config table
---

diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql
index 5b4d0485af..dbfd500985 100644
--- a/db/statusnet_pg.sql
+++ b/db/statusnet_pg.sql
@@ -549,3 +549,13 @@ create index noticecontent_idx on notice using gist(to_tsvector('english',conten
 create trigger textsearchupdate before insert or update on profile for each row
 execute procedure tsvector_update_trigger(textsearch, 'pg_catalog.english', nickname, fullname, location, bio, homepage);
 
+
+create table config (
+
+    section varchar(32) /* comment 'configuration section'*/,
+    setting varchar(32) /* comment 'configuration setting'*/,
+    value varchar(255) /* comment 'configuration value'*/,
+
+    primary key (section, setting)
+
+);