DB/Schema/Auth: Also change battlenet_accounts.os to varchar(4)

Ref 59bb9c20f3
This commit is contained in:
Nayd
2014-11-25 16:44:50 +00:00
parent bac37625f3
commit ed3970690c
3 changed files with 2 additions and 1 deletions

View File

@@ -216,7 +216,7 @@ CREATE TABLE `battlenet_accounts` (
`last_login` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`online` tinyint(3) unsigned NOT NULL DEFAULT '0',
`locale` tinyint(3) unsigned NOT NULL DEFAULT '0',
`os` varchar(3) NOT NULL DEFAULT '',
`os` varchar(4) NOT NULL DEFAULT '',
`LastCharacterUndelete` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Account System';