Add pwdreset_time field to user table
This commit is contained in:
parent
209c43ebbc
commit
391c591322
2
boot.php
2
boot.php
|
@ -41,7 +41,7 @@ define('FRIENDICA_PLATFORM', 'Friendica');
|
|||
define('FRIENDICA_CODENAME', 'Asparagus');
|
||||
define('FRIENDICA_VERSION', '3.6-dev');
|
||||
define('DFRN_PROTOCOL_VERSION', '2.23');
|
||||
define('DB_UPDATE_VERSION', 1242);
|
||||
define('DB_UPDATE_VERSION', 1243);
|
||||
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
|
||||
|
||||
/**
|
||||
|
|
|
@ -1733,7 +1733,8 @@ class DBStructure {
|
|||
"page-flags" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
||||
"account-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
|
||||
"prvnets" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||
"pwdreset" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"pwdreset" => ["type" => "varchar(255)", "comment" => "Password reset request token"],
|
||||
"pwdreset_time" => ["type" => "datetime", "comment" => "Timestamp of the last password reset request"],
|
||||
"maxreq" => ["type" => "int", "not null" => "1", "default" => "10", "comment" => ""],
|
||||
"expire" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
|
||||
"account_removed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||
|
@ -1783,6 +1784,6 @@ class DBStructure {
|
|||
]
|
||||
];
|
||||
|
||||
return($database);
|
||||
return $database;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue