]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - db/statusnet.sql
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / db / statusnet.sql
index 0cf0572565fb7318f427d299d25bafee479a6223..d6f0f54a2d690c5fa6ec9ff84bbceebde883c877 100644 (file)
@@ -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;