aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarbenium <carbenium@outlook.com>2015-07-10 22:28:53 +0200
committerCarbenium <carbenium@outlook.com>2015-07-10 22:29:32 +0200
commitfacb038b949ef32033198dcba044d1606e0fdfcd (patch)
treef7bdc41f7b7ec8c6d800a69a5818d8533db592f1
parent983e9b6b8bbf36ad030bfe33bd8d247415206f0b (diff)
DB/Base: Smth went wrong during the last dump...
-rw-r--r--sql/base/characters_database.sql9
1 files changed, 3 insertions, 6 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql
index 3ea09dbb02b..f2d0188ae8e 100644
--- a/sql/base/characters_database.sql
+++ b/sql/base/characters_database.sql
@@ -1704,12 +1704,9 @@ DROP TABLE IF EXISTS `corpse_phases`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `corpse_phases` (
- `Guid` int(10) unsigned NOT NULL,
+ `OwnerGuid` bigint(20) unsigned NOT NULL DEFAULT '0',
`PhaseId` int(10) unsigned NOT NULL,
- `OwnerGuid` int(10) unsigned NOT NULL,
- `Time` int(10) unsigned NOT NULL DEFAULT '0',
- `CorpseType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`Guid`,`PhaseId`)
+ PRIMARY KEY (`OwnerGuid`,`PhaseId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -3153,4 +3150,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
--- Dump completed on 2015-07-10 21:35:39
+-- Dump completed on 2015-07-10 22:27:47