From: Brenda Wallace Date: Wed, 22 Jul 2009 04:46:32 +0000 (+1200) Subject: added missing columns in file table X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c34875421ac97be26533bd494c048256136b8c1f;p=quix0rs-gnu-social.git added missing columns in file table --- diff --git a/db/laconica_pg.sql b/db/laconica_pg.sql index 55a103ee07..172b64cf4b 100644 --- a/db/laconica_pg.sql +++ b/db/laconica_pg.sql @@ -443,7 +443,6 @@ create table group_inbox ( group_id integer not null /* comment 'group receiving the message' references user_group (id) */, notice_id integer not null /* comment 'notice received' references notice (id) */, created timestamp not null default CURRENT_TIMESTAMP /* comment 'date the notice was created' */, - primary key (group_id, notice_id) ); create index group_inbox_created_idx on group_inbox using btree(created); @@ -458,7 +457,9 @@ create table file ( size integer, title varchar(255), date integer, - protected integer + protected integer, + filename text /* comment 'if a local file, name of the file' */, + modified timestamp default CURRENT_TIMESTAMP /* comment 'date this record was modified'*/ ); create sequence file_oembed_seq;