From: Brenda Wallace Date: Sat, 22 May 2010 08:52:53 +0000 (+1200) Subject: queue_item in _pg now matches mysql X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bfef9184820fd1fc40d86c8e65c628c6ae88a691;p=quix0rs-gnu-social.git queue_item in _pg now matches mysql --- diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index 27c4adc98c..3f62ab7527 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -287,14 +287,12 @@ create table remember_me ( ); create table queue_item ( - - notice_id integer not null /* comment 'notice queued' */ references notice (id) , - transport varchar(8) not null /* comment 'queue for what? "email", "jabber", "sms", "irc", ...' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - claimed timestamp /* comment 'date this item was claimed' */, - - primary key (notice_id, transport) - + id serial /* comment 'unique identifier'*/, + frame bytea not null /* comment 'data: object reference or opaque string'*/, + transport varchar(8) not null /*comment 'queue for what? "email", "jabber", "sms", "irc", ...'*/, + created timestamp not null default CURRENT_TIMESTAMP /*comment 'date this record was created'*/, + claimed timestamp /*comment 'date this item was claimed'*/, + PRIMARY KEY (id) ); create index queue_item_created_idx on queue_item using btree(created);