Receive participation messages and processes them

This commit is contained in:
Michael 2018-01-12 20:52:43 +00:00
parent 85eaa002a2
commit 3c027699a5
4 changed files with 93 additions and 4 deletions

View file

@ -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"),