DB/Schema/Auth: Change account.os to varchar(4)

Windows and Mac 64 bit clients send "Wn64" and "Mc64", respectively, and that does not fit in a varchar(3)
This commit is contained in:
Nayd
2014-11-23 23:53:22 +00:00
parent 279615d2b8
commit 59bb9c20f3
2 changed files with 2 additions and 1 deletions

View File

@@ -45,7 +45,7 @@ CREATE TABLE `account` (
`mutereason` varchar(255) NOT NULL DEFAULT '',
`muteby` varchar(50) NOT NULL DEFAULT '',
`locale` tinyint(3) unsigned NOT NULL DEFAULT '0',
`os` varchar(3) NOT NULL DEFAULT '',
`os` varchar(4) NOT NULL DEFAULT '',
`recruiter` int(10) unsigned NOT NULL DEFAULT '0',
`battlenet_account` int(10) unsigned DEFAULT NULL,
`battlenet_index` tinyint(3) unsigned DEFAULT NULL,