]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added config table
authorBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:33:49 +0000 (20:33 +1200)
committerBrenda Wallace <shiny@cpan.org>
Fri, 28 Aug 2009 08:33:49 +0000 (20:33 +1200)
db/statusnet_pg.sql

index 5b4d0485af3f202f4470cc9f13149f1a9f3b8738..dbfd500985a4a005f29d3ca94008393fea8ca1e0 100644 (file)
@@ -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)
+
+);