Added missing sql updates

--HG--
branch : trunk
This commit is contained in:
n0n4m3
2009-12-18 07:06:53 +01:00
parent 304f59f2bb
commit bb2ddadae9
4 changed files with 124 additions and 6 deletions

View File

@@ -1395,8 +1395,9 @@ UNLOCK TABLES;
DROP TABLE IF EXISTS `instance_reset`;
CREATE TABLE `instance_reset` (
`mapid` int(11) unsigned NOT NULL default '0',
`difficulty` tinyint(1) unsigned NOT NULL default '0',
`resettime` bigint(40) NOT NULL default '0',
PRIMARY KEY (`mapid`)
PRIMARY KEY (`mapid`,`difficulty`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--