aboutsummaryrefslogtreecommitdiff
path: root/sql/base
diff options
context:
space:
mode:
Diffstat (limited to 'sql/base')
-rw-r--r--sql/base/characters_database.sql29
1 files changed, 28 insertions, 1 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql
index 2d5104196b6..1467f83d6a8 100644
--- a/sql/base/characters_database.sql
+++ b/sql/base/characters_database.sql
@@ -1461,7 +1461,6 @@ CREATE TABLE `character_stats` (
`agility` int(10) unsigned NOT NULL DEFAULT '0',
`stamina` int(10) unsigned NOT NULL DEFAULT '0',
`intellect` int(10) unsigned NOT NULL DEFAULT '0',
- `spirit` int(10) unsigned NOT NULL DEFAULT '0',
`armor` int(10) unsigned NOT NULL DEFAULT '0',
`resHoly` int(10) unsigned NOT NULL DEFAULT '0',
`resFire` int(10) unsigned NOT NULL DEFAULT '0',
@@ -1620,6 +1619,9 @@ CREATE TABLE `characters` (
`hairStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
`hairColor` tinyint(3) unsigned NOT NULL DEFAULT '0',
`facialStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `customDisplay1` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `customDisplay2` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `customDisplay3` tinyint(3) unsigned NOT NULL DEFAULT '0',
`bankSlots` tinyint(3) unsigned NOT NULL DEFAULT '0',
`restState` tinyint(3) unsigned NOT NULL DEFAULT '0',
`playerFlags` int(10) unsigned NOT NULL DEFAULT '0',
@@ -2579,6 +2581,31 @@ LOCK TABLES `item_instance` WRITE;
UNLOCK TABLES;
--
+-- Table structure for table `item_instance_gems`
+--
+
+DROP TABLE IF EXISTS `item_instance_gems`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `item_instance_gems` (
+ `itemGuid` bigint(20) unsigned NOT NULL,
+ `gemItemId1` int(10) unsigned DEFAULT NULL,
+ `gemItemId2` int(10) unsigned DEFAULT NULL,
+ `gemItemId3` int(10) unsigned DEFAULT NULL,
+ PRIMARY KEY (`itemGuid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item_instance_gems`
+--
+
+LOCK TABLES `item_instance_gems` WRITE;
+/*!40000 ALTER TABLE `item_instance_gems` DISABLE KEYS */;
+/*!40000 ALTER TABLE `item_instance_gems` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
-- Table structure for table `item_loot_items`
--