There is now a "global" field in the item table that tells if this item is present as global copy as well.

This commit is contained in:
Michael Vogel 2015-03-09 00:45:53 +01:00
parent 2260415ca9
commit ea06a1ec45
4 changed files with 25 additions and 5 deletions

View file

@ -778,6 +778,7 @@ function db_definition() {
"network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
"rendered-hash" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
"rendered-html" => array("type" => "mediumtext", "not null" => "1"),
"global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
),
"indexes" => array(
"PRIMARY" => array("id"),