Changed PKs in world_database.sql...which I forgot to do in 8625.

--HG--
branch : trunk
This commit is contained in:
Xanadu
2010-06-18 22:38:18 +02:00
parent 1218b001ac
commit 706c0568a5

View File

@@ -4211,7 +4211,7 @@ CREATE TABLE `pool_creature` (
`pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float unsigned NOT NULL DEFAULT '0',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`pool_entry`,`guid`),
PRIMARY KEY (`guid`),
KEY `idx_guid` (`guid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -4237,7 +4237,7 @@ CREATE TABLE `pool_gameobject` (
`pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float unsigned NOT NULL DEFAULT '0',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`guid`,`pool_entry`),
PRIMARY KEY (`guid`),
KEY `idx_guid` (`guid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -4263,7 +4263,7 @@ CREATE TABLE `pool_pool` (
`mother_pool` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float NOT NULL DEFAULT '0',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`pool_id`,`mother_pool`)
PRIMARY KEY (`pool_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;