Skip to content

Commit

Permalink
fix for #1505
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex300 committed Apr 2, 2016
1 parent 3cff686 commit a093ac2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/users/users.setup.php
Expand Up @@ -3,7 +3,7 @@
[BEGIN_COT_EXT]
Name=Users
Description=Users registration and profiles
Version=1.4.4
Version=1.4.5
Date=2016-03-01
Author=Neocrome & Cotonti Team
Copyright=(c) Cotonti Team 2008-2016
Expand Down
34 changes: 17 additions & 17 deletions setup/install.sql
Expand Up @@ -275,26 +275,26 @@ CREATE TABLE `cot_users` (
`user_passfunc` VARCHAR(32) NOT NULL default 'sha256',
`user_passsalt` VARCHAR(16) NOT NULL default '',
`user_maingrp` int NOT NULL default '4',
`user_country` char(2) collate utf8_unicode_ci NOT NULL default '',
`user_timezone` varchar(32) collate utf8_unicode_ci NOT NULL default 'GMT',
`user_country` char(2) collate utf8_unicode_ci default '',
`user_timezone` varchar(32) collate utf8_unicode_ci default 'GMT',
`user_text` text collate utf8_unicode_ci,
`user_birthdate` DATE NOT NULL DEFAULT '0000-00-00',
`user_gender` char(1) collate utf8_unicode_ci NOT NULL default 'U',
`user_email` varchar(64) collate utf8_unicode_ci NOT NULL default '',
`user_hideemail` tinyint unsigned NOT NULL default '1',
`user_theme` varchar(32) collate utf8_unicode_ci NOT NULL default '',
`user_scheme` varchar(32) collate utf8_unicode_ci NOT NULL default '',
`user_lang` varchar(16) collate utf8_unicode_ci NOT NULL default '',
`user_birthdate` DATE DEFAULT NULL,
`user_gender` char(1) collate utf8_unicode_ci default 'U',
`user_email` varchar(64) collate utf8_unicode_ci default '',
`user_hideemail` tinyint unsigned default '1',
`user_theme` varchar(32) collate utf8_unicode_ci default '',
`user_scheme` varchar(32) collate utf8_unicode_ci default '',
`user_lang` varchar(16) collate utf8_unicode_ci default '',
`user_regdate` int NOT NULL default '0',
`user_lastlog` int NOT NULL default '0',
`user_lastvisit` int NOT NULL default '0',
`user_lastip` varchar(16) collate utf8_unicode_ci NOT NULL default '',
`user_logcount` int unsigned NOT NULL default '0',
`user_sid` char(64) collate utf8_unicode_ci NOT NULL default '',
`user_sidtime` int NOT NULL default 0,
`user_lostpass` char(32) collate utf8_unicode_ci NOT NULL default '',
`user_lastlog` int default '0',
`user_lastvisit` int default '0',
`user_lastip` varchar(16) collate utf8_unicode_ci default '',
`user_logcount` int unsigned default '0',
`user_sid` char(64) collate utf8_unicode_ci default '',
`user_sidtime` int default 0,
`user_lostpass` char(32) collate utf8_unicode_ci default '',
`user_auth` MEDIUMTEXT collate utf8_unicode_ci,
`user_token` char(16) collate utf8_unicode_ci NOT NULL default '',
`user_token` char(16) collate utf8_unicode_ci default '',
PRIMARY KEY (`user_id`),
KEY `user_password` (`user_password`),
KEY `user_regdate` (`user_regdate`),
Expand Down

0 comments on commit a093ac2

Please sign in to comment.