summaryrefslogtreecommitdiff
path: root/db/statusnet.sql
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-22 14:18:43 -0500
committerEvan Prodromou <evan@status.net>2010-01-22 14:18:43 -0500
commitc8bc598cfd67353f33d7785556374b5d6865a7d9 (patch)
tree6be983b49cfc78a35baa361f77ad0b365a9a9bed /db/statusnet.sql
parente666433eb4a66078e3459d7d4f51f5ce5a1ad589 (diff)
parent29d83c8ca94201cb010b5aef564df78ab868ea0c (diff)
Merge branch 'testing' into 0.9.x
Diffstat (limited to 'db/statusnet.sql')
-rw-r--r--db/statusnet.sql5
1 files changed, 2 insertions, 3 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql
index 2a9ab74c7..17de4fd0d 100644
--- a/db/statusnet.sql
+++ b/db/statusnet.sql
@@ -274,13 +274,12 @@ create table remember_me (
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table queue_item (
-
- notice_id integer not null comment 'notice queued' references notice (id),
+ id integer auto_increment primary key comment 'unique identifier',
+ frame blob not null comment 'data: object reference or opaque string',
transport varchar(8) not null comment 'queue for what? "email", "jabber", "sms", "irc", ...',
created datetime not null comment 'date this record was created',
claimed datetime comment 'date this item was claimed',
- constraint primary key (notice_id, transport),
index queue_item_created_idx (created)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;