add a queued notice item

darcs-hash:20080704040746-84dde-36803f820ea7c238613cf5728c59a18ff1eb442d.gz
This commit is contained in:
Evan Prodromou
2008-07-04 00:07:46 -04:00
parent 7816e4122a
commit 784299c257
3 changed files with 41 additions and 0 deletions

View File

@@ -173,3 +173,14 @@ create table remember_me (
user_id integer not null comment 'user who is logged in' references user (id),
modified timestamp comment 'date this record was modified'
) ENGINE=InnoDB;
create table queue_item (
notice_id integer not null primary key comment 'notice queued' references notice (id),
created datetime not null comment 'date this record was created',
claimed datetime comment 'date this item was claimed',
index queue_item_created_idx (created)
) ENGINE=InnoDB;