added missing conversation id to notices
This commit is contained in:
parent
72df5c9eb4
commit
2456baa3bc
|
@ -116,7 +116,8 @@ create table notice (
|
|||
modified timestamp /* comment 'date this record was modified' */,
|
||||
reply_to integer /* comment 'notice replied to (usually a guess)' */ references notice (id) ,
|
||||
is_local integer default 0 /* comment 'notice was generated by a user' */,
|
||||
source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */
|
||||
source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */,
|
||||
conversation integer /*id of root notice in this conversation' */ references notice (id)
|
||||
|
||||
|
||||
/* FULLTEXT(content) */
|
||||
|
|
Loading…
Reference in New Issue
Block a user