1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-04-30 16:09:22 +03:00

user pass field size

This commit is contained in:
Chiffa 2017-02-01 17:13:16 +05:00
parent d85561a300
commit d6f27427f1
2 changed files with 3 additions and 1 deletions

View file

@ -879,7 +879,7 @@ INSERT INTO `prefix_topic_type` (`id`, `name`, `name_many`, `code`, `allow_remov
CREATE TABLE IF NOT EXISTS `prefix_user` (
`user_id` int(11) unsigned NOT NULL,
`user_login` varchar(30) NOT NULL,
`user_password` varchar(50) NOT NULL,
`user_password` varchar(255) NOT NULL,
`user_mail` varchar(50) DEFAULT NULL,
`user_admin` tinyint(1) NOT NULL DEFAULT '0',
`user_skill` float(9,3) unsigned NOT NULL DEFAULT '0.000',

View file

@ -0,0 +1,2 @@
-- 01.02.2017
ALTER TABLE `prefix_user` CHANGE `user_password` `user_password` VARCHAR(255) NOT NULL;