mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user