mirror of
https://github.com/friendica/friendica
synced 2025-04-22 09:10:10 +00:00
Receive participation messages and processes them
This commit is contained in:
parent
85eaa002a2
commit
3c027699a5
4 changed files with 93 additions and 4 deletions
|
@ -1299,6 +1299,16 @@ class DBStructure {
|
|||
"created" => array("created"),
|
||||
)
|
||||
);
|
||||
$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")),
|
||||
"server" => array("type" => "varchar(60)", "not null" => "1", "primary" => "1"),
|
||||
),
|
||||
"indexes" => array(
|
||||
"PRIMARY" => array("item", "server")
|
||||
)
|
||||
);
|
||||
$database["pconfig"] = array(
|
||||
"fields" => array(
|
||||
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue