From a0e41693e48be87feb0baa378c74e8309146c9c5 Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Fri, 28 Aug 2009 20:33:49 +1200 Subject: [PATCH] added config table --- db/statusnet_pg.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) 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) + +);