]> git.mxchange.org Git - friendica.git/commitdiff
Add pwdreset_time field to user table
authorHypolite Petovan <mrpetovan@gmail.com>
Sat, 20 Jan 2018 23:06:58 +0000 (18:06 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Sat, 20 Jan 2018 23:06:58 +0000 (18:06 -0500)
boot.php
src/Database/DBStructure.php

index 776cf49fa884a11e6c11f9486f2684da2d6b6fe3..4d2eac35a3e25638ca1cf3cf7a3877cfcee42238 100644 (file)
--- a/boot.php
+++ b/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);
 
 /**
index 3f4614b6c7fd7e073c436f530d07a7ceef2b86b3..cb69b49525cab017e7cd4717f558a6278599340c 100644 (file)
@@ -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;
        }
 }