1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-16 14:50:48 +03:00

Merge pull request #826 from Xmk/chiffa

user pass field size
This commit is contained in:
Maxim Mzhelskiy 2017-02-06 12:29:03 +07:00 committed by GitHub
commit b8ecf9983d
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;