mirror of
https://github.com/friendica/friendica
synced 2025-04-24 05:50:11 +00:00
Corrected field names
This commit is contained in:
parent
9e37b49bea
commit
fc9453b7e9
3 changed files with 18 additions and 7 deletions
|
@ -1301,12 +1301,12 @@ class DBStructure {
|
|||
);
|
||||
$database["participation"] = array(
|
||||
"fields" => array(
|
||||
"item" => array("type" => "int(10) unsigned", "not null" => "1", "primary" => "1", "relation" => array("item" => "id")),
|
||||
"contact" => array("type" => "int(10) unsigned", "not null" => "1", "relation" => array("contact" => "id")),
|
||||
"iid" => array("type" => "int(10) unsigned", "not null" => "1", "primary" => "1", "relation" => array("item" => "id")),
|
||||
"server" => array("type" => "varchar(60)", "not null" => "1", "primary" => "1"),
|
||||
"cid" => array("type" => "int(10) unsigned", "not null" => "1", "relation" => array("contact" => "id")),
|
||||
),
|
||||
"indexes" => array(
|
||||
"PRIMARY" => array("item", "server")
|
||||
"PRIMARY" => array("iid", "server")
|
||||
)
|
||||
);
|
||||
$database["pconfig"] = array(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue