diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-02-24 20:52:45 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-02-24 20:52:45 -0500 |
commit | c187bf55974347f7ddb4f28714af57861dce8f08 (patch) | |
tree | 4398b456d88ce79977959b25ba1a0f6fe0c1d77f /db | |
parent | 20d6a7caed6636c28cc7b95c584549691dff4388 (diff) | |
parent | 8914b69d5055c1bc7d0604ee338ffdaf6b0a8606 (diff) |
Merge branch '0.9.x' into 1.0.x
Conflicts:
EVENTS.txt
db/statusnet.sql
lib/queuemanager.php
Diffstat (limited to 'db')
-rw-r--r-- | db/statusnet.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql index 0cf057256..d6f0f54a2 100644 --- a/db/statusnet.sql +++ b/db/statusnet.sql @@ -643,3 +643,10 @@ create table user_im_prefs ( constraint primary key (user_id, transport), constraint unique key `transport_screenname_key` ( `transport` , `screenname` ) ); + +create table conversation ( + id integer auto_increment primary key comment 'unique identifier', + uri varchar(225) unique comment 'URI of the conversation', + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified' +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; |