mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-12-04 19:24:16 +00:00
Fix table structure typo
This commit is contained in:
parent
5a928c9198
commit
d3570af12f
@ -302,7 +302,7 @@ class AccountComponent {
|
|||||||
|
|
||||||
//Prepare database update
|
//Prepare database update
|
||||||
$modifs = array(
|
$modifs = array(
|
||||||
"pasword_reset_token" => $token,
|
"password_reset_token" => $token,
|
||||||
"password_reset_token_time_create" => time()
|
"password_reset_token_time_create" => time()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -484,7 +484,7 @@ CREATE TABLE `utilisateurs` (
|
|||||||
`allow_multilogin` int(11) NOT NULL DEFAULT '0',
|
`allow_multilogin` int(11) NOT NULL DEFAULT '0',
|
||||||
`allow_piwik` int(11) NOT NULL DEFAULT '1',
|
`allow_piwik` int(11) NOT NULL DEFAULT '1',
|
||||||
`public_note` varchar(255) DEFAULT NULL,
|
`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,
|
`password_reset_token_time_create` int(11) DEFAULT NULL,
|
||||||
PRIMARY KEY (`ID`)
|
PRIMARY KEY (`ID`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||||
|
Loading…
Reference in New Issue
Block a user