The table "unique_contacts" now has an "about" and "location" field as well.

This commit is contained in:
Michael Vogel 2015-01-08 01:32:19 +01:00
parent 044eaa778f
commit 46db8575a0
3 changed files with 44 additions and 7 deletions

View file

@ -1251,6 +1251,8 @@ function db_definition() {
"nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
"avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
"location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
"about" => array("type" => "text", "not null" => "1"),
),
"indexes" => array(
"PRIMARY" => array("id"),