port hubzillas OpenWebAuth - rename verify table to openwebauth-token

This commit is contained in:
rabuzarus 2018-06-20 19:18:41 +02:00
parent 1ab3f7bfc8
commit d5afbd3357
3 changed files with 12 additions and 12 deletions

View file

@ -1818,8 +1818,8 @@ class DBStructure
"PRIMARY" => ["uid", "iid"],
]
];
$database["verify"] = [
"comment" => "Store token to verify contacts",
$database["openwebauth-token"] = [
"comment" => "Store OpenWebAuth token to verify contacts",
"fields" => [
"id" => ["type" => "int(10)", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
"uid" => ["type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],