mirror of
https://github.com/friendica/friendica
synced 2025-04-19 06:30:10 +00:00
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:
parent
2260415ca9
commit
ea06a1ec45
4 changed files with 25 additions and 5 deletions
|
@ -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"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue