added config table

This commit is contained in:
Brenda Wallace 2009-08-28 20:33:49 +12:00
parent 06514aa001
commit a0e41693e4
1 changed files with 10 additions and 0 deletions

View 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)
);