mirror of
https://github.com/friendica/friendica
synced 2025-04-25 10:30:12 +00:00
The table "unique_contacts" now has an "about" and "location" field as well.
This commit is contained in:
parent
044eaa778f
commit
46db8575a0
3 changed files with 44 additions and 7 deletions
|
@ -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"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue