Fix table structure typo

This commit is contained in:
Pierre 2018-05-26 14:45:08 +02:00
parent 5a928c9198
commit d3570af12f
2 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ class AccountComponent {
//Prepare database update
$modifs = array(
"pasword_reset_token" => $token,
"password_reset_token" => $token,
"password_reset_token_time_create" => time()
);

View File

@ -484,7 +484,7 @@ CREATE TABLE `utilisateurs` (
`allow_multilogin` int(11) NOT NULL DEFAULT '0',
`allow_piwik` int(11) NOT NULL DEFAULT '1',
`public_note` varchar(255) DEFAULT NULL,
`pasword_reset_token` varchar(255) DEFAULT NULL,
`password_reset_token` varchar(255) DEFAULT NULL,
`password_reset_token_time_create` int(11) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;