mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
Drop characters data blob. Bit thx to hunuza.
--HG-- branch : trunk
This commit is contained in:
@@ -327,7 +327,6 @@ DROP TABLE IF EXISTS `characters`;
|
||||
CREATE TABLE `characters` (
|
||||
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
||||
`account` int(11) unsigned NOT NULL default '0' COMMENT 'Account Identifier',
|
||||
`data` longtext,
|
||||
`name` varchar(12) NOT NULL default '',
|
||||
`race` tinyint(3) unsigned NOT NULL default '0',
|
||||
`class` tinyint(3) unsigned NOT NULL default '0',
|
||||
@@ -385,9 +384,13 @@ CREATE TABLE `characters` (
|
||||
`power5` int(10) unsigned NOT NULL default'0',
|
||||
`power6` int(10) unsigned NOT NULL default'0',
|
||||
`power7` int(10) unsigned NOT NULL default'0',
|
||||
`latency` int(11) unsigned NOT NULL default '0',
|
||||
`speccount` tinyint(3) unsigned NOT NULL default 1,
|
||||
`activespec` tinyint(3) unsigned NOT NULL default 0,
|
||||
`latency` int(11) unsigned NOT NULL default '0',
|
||||
`exploredZones` longtext,
|
||||
`equipmentCache` longtext,
|
||||
`ammoId` int(10) UNSIGNED NOT NULL default '0',
|
||||
`knownTitles` longtext,
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `idx_account` (`account`),
|
||||
KEY `idx_online` (`online`),
|
||||
|
||||
Reference in New Issue
Block a user