The item id is now stored in every notification as well

This commit is contained in:
Michael Vogel 2015-04-16 07:18:06 +02:00
parent 7a1db2e083
commit d42cea51a2
4 changed files with 13 additions and 5 deletions

View file

@ -925,6 +925,7 @@ function db_definition() {
"msg" => array("type" => "mediumtext", "not null" => "1"),
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
"link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
"iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
"parent" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
"seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
"verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),