mirror of
https://github.com/friendica/friendica
synced 2025-04-25 15:10:13 +00:00
New field in item table ("shadow") that indicates if there is a shadow entry
This commit is contained in:
parent
c8a62a4073
commit
f711258183
7 changed files with 145 additions and 62 deletions
|
@ -783,6 +783,7 @@ function db_definition() {
|
|||
"parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
||||
"extid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
||||
"thr-parent" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
||||
"shadow" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
||||
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
||||
"edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
||||
"commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue