Conversation data is now stored in another table

This commit is contained in:
Michael 2017-04-26 21:16:25 +00:00
parent 2e4db2e64e
commit 45d73b106b
5 changed files with 96 additions and 18 deletions

View file

@ -816,6 +816,7 @@ function db_definition() {
"conversation-uri" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
"protocol" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
"source" => array("type" => "mediumtext"),
"received" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
),
"indexes" => array(
"PRIMARY" => array("item-uri"),