diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-17 10:14:08 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-17 10:14:08 -0800 |
commit | 5a6cbb248f8cdcb171ea5540e6a6c2eb10506a82 (patch) | |
tree | c72830bef3388b1ceb19cc6ef688177122961435 /db | |
parent | 46e9aa13aa87955b441bc63b7cf2f58622b131b0 (diff) | |
parent | 3cb6b1670bd7e3860fdca217e4075f51378fe5e0 (diff) |
Merge branch 'testing' into 0.9.x
Diffstat (limited to 'db')
-rw-r--r-- | db/statusnet.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql index 343464801..97117c80a 100644 --- a/db/statusnet.sql +++ b/db/statusnet.sql @@ -633,3 +633,11 @@ create table inbox ( constraint primary key (user_id) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +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; + |