]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added missing conversation id to notices
authorBrenda Wallace <shiny@cpan.org>
Thu, 25 Jun 2009 10:00:55 +0000 (22:00 +1200)
committerBrenda Wallace <shiny@cpan.org>
Thu, 25 Jun 2009 10:00:55 +0000 (22:00 +1200)
db/laconica_pg.sql

index 622242bdf6aa33876fd9a9dcf3702c3dbdb77c56..f8362ae9358a210325736a780e46ce42a1757fc0 100644 (file)
@@ -116,7 +116,8 @@ create table notice (
     modified timestamp /* comment 'date this record was modified' */,\r
     reply_to integer /* comment 'notice replied to (usually a guess)' */ references notice (id) ,\r
     is_local integer default 0 /* comment 'notice was generated by a user' */,\r
-    source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */\r
+    source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */,\r
+    conversation integer /*id of root notice in this conversation' */ references notice (id)\r
 \r
 \r
 /*    FULLTEXT(content) */\r