The global contacts now contain a "generation" value that defines how we know this contact

This commit is contained in:
Michael Vogel 2015-02-15 10:52:45 +01:00
parent cb88269581
commit d1d794f1ab
7 changed files with 179 additions and 27 deletions

View file

@ -626,6 +626,7 @@ function db_definition() {
"keywords" => array("type" => "text", "not null" => "1"),
"gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
"network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
"generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
),
"indexes" => array(
"PRIMARY" => array("id"),