diff options
| author | Vincent-Core <Vincent_Michael@gmx.de> | 2012-01-19 22:31:45 +0100 |
|---|---|---|
| committer | Vincent-Core <Vincent_Michael@gmx.de> | 2012-01-19 22:31:45 +0100 |
| commit | 7f193bd828311c95c990d65a3021f0c899cc2a58 (patch) | |
| tree | 56889ae4fbe1f87b512b54a95e91780c5acc0842 /sql/base | |
| parent | d3422169f0010289a371b072e3ab36807411dfcb (diff) | |
| parent | 87761580aacf8b8d96a878a8a2de2ea5a245549c (diff) | |
Merge branch 'master' of git://github.com/TrinityCore/TrinityCore into AchievementFix
Diffstat (limited to 'sql/base')
| -rw-r--r-- | sql/base/characters_database.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index 4e81308119f..f02ae80e472 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -1946,6 +1946,30 @@ LOCK TABLES `lag_reports` WRITE; UNLOCK TABLES; -- +-- Table structure for table `lfg_data` +-- + +DROP TABLE IF EXISTS `lfg_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `lfg_data` ( + `guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', + `dungeon` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `state` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', + PRIMARY KEY (`guid`) +) ENGINE=INNODB DEFAULT CHARSET=utf8 COMMENT='LFG Data'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lfg_data` +-- + +LOCK TABLES `lfg_data` WRITE; +/*!40000 ALTER TABLE `lfg_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `lfg_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `mail` -- |
