mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-03-07 15:16:40 +08:00
set length of hash field to 64
This commit is contained in:
parent
dce1a4a4d7
commit
e012033a0a
@ -3,7 +3,7 @@
|
||||
* @Author: printempw
|
||||
* @Date: 2016-01-16 23:01:33
|
||||
* @Last Modified by: prpr
|
||||
* @Last Modified time: 2016-01-17 10:47:20
|
||||
* @Last Modified time: 2016-01-17 15:11:13
|
||||
*
|
||||
* Create tables automatically
|
||||
*/
|
||||
@ -40,9 +40,9 @@ if (!file_exists("./install.lock")) {
|
||||
`username` varchar(20) NOT NULL,
|
||||
`password` varchar(32) NOT NULL,
|
||||
`ip` varchar(32) NOT NULL,
|
||||
`preference` varchar(32) NOT NULL,
|
||||
`skin_hash` varchar(32) NOT NULL,
|
||||
`cape_hash` varchar(32) NOT NULL,
|
||||
`preference` varchar(10) NOT NULL,
|
||||
`skin_hash` varchar(64) NOT NULL,
|
||||
`cape_hash` varchar(64) NOT NULL,
|
||||
PRIMARY KEY (`uid`),
|
||||
UNIQUE KEY `uid` (`uid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15;";
|
||||
|
Loading…
Reference in New Issue
Block a user