mirror of
https://github.com/friendica/friendica
synced 2025-04-23 23:50:12 +00:00
[database] Add user.legacy_password field
This commit is contained in:
parent
986e22d9e1
commit
c53c2fffa5
3 changed files with 4 additions and 2 deletions
|
@ -1708,6 +1708,7 @@ class DBStructure {
|
|||
"guid" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"username" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"legacy_password" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Is the password hash double-hashed?"],
|
||||
"nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"email" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"openid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue