* Change sql update naming scheme from absent now revison numbers to date+counter...
[getmangos.git] / sql / updates / 06698_characters_character_tutorial.sql
blob78b6913fa48e6700f36bc5b341ad68b413c69c86
1 DROP TABLE IF EXISTS `character_tutorial`;
2 CREATE TABLE `character_tutorial` (
3   `account` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Account Identifier',
4   `realmid` int(11) unsigned NOT NULL default '0' COMMENT 'Realm Identifier',
5   `tut0` int(11) unsigned NOT NULL default '0',
6   `tut1` int(11) unsigned NOT NULL default '0',
7   `tut2` int(11) unsigned NOT NULL default '0',
8   `tut3` int(11) unsigned NOT NULL default '0',
9   `tut4` int(11) unsigned NOT NULL default '0',
10   `tut5` int(11) unsigned NOT NULL default '0',
11   `tut6` int(11) unsigned NOT NULL default '0',
12   `tut7` int(11) unsigned NOT NULL default '0',
13   PRIMARY KEY  (`account`,`realmid`),
14   KEY acc_key (`account`)
15 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';