diff options
author | Xanadu <none@none> | 2010-06-18 22:38:18 +0200 |
---|---|---|
committer | Xanadu <none@none> | 2010-06-18 22:38:18 +0200 |
commit | 706c0568a5a7261bbc1839d771bd885a5842a116 (patch) | |
tree | c2f4c26785a3a9b71036bf8ed65c3a2fdf93e1f2 | |
parent | 1218b001acce5c50e7ad781823fdc668e4c3a493 (diff) |
Changed PKs in world_database.sql...which I forgot to do in 8625.
--HG--
branch : trunk
-rw-r--r-- | sql/base/world_database.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 5be96e7bf15..f84a6b76705 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -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 */; |