DB/Auth: Increase realmlist.address size to 64 (varchar)

You might want to verify if the previous size did not truncate your address (it was 15)
This commit is contained in:
Nay
2012-04-01 03:08:33 +01:00
parent 377c5ce36e
commit 00264e45cf
2 changed files with 2 additions and 1 deletions

View File

@@ -191,7 +191,7 @@ DROP TABLE IF EXISTS `realmlist`;
CREATE TABLE `realmlist` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL DEFAULT '',
`address` varchar(15) NOT NULL DEFAULT '127.0.0.1',
`address` varchar(64) NOT NULL DEFAULT '127.0.0.1',
`port` smallint(5) unsigned NOT NULL DEFAULT '8085',
`icon` tinyint(3) unsigned NOT NULL DEFAULT '0',
`flag` tinyint(3) unsigned NOT NULL DEFAULT '2',