diff options
| author | XTZGZoReX <none@none> | 2010-08-06 18:03:09 +0200 |
|---|---|---|
| committer | XTZGZoReX <none@none> | 2010-08-06 18:03:09 +0200 |
| commit | b63a31f513db5274e85afc323d143292d8f3e88f (patch) | |
| tree | 7b8300182cdf20994c132be1aa39ab89bce3df84 /sql/base | |
| parent | edc4c3317c8e6db6f67d71eb135c084970401fd1 (diff) | |
* Added outdoorpvp_template table (currently unused).
* Added DISABLE_TYPE_OUTDOORPVP (5) which can disable outdoorpvp_template entries.
--HG--
branch : trunk
Diffstat (limited to 'sql/base')
| -rw-r--r-- | sql/base/world_database.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index b354c82316c..8e769eb010e 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -3841,6 +3841,30 @@ LOCK TABLES `npc_vendor` WRITE; UNLOCK TABLES; -- +-- Table structure for table `outdoorpvp_template` +-- + +DROP TABLE IF EXISTS `outdoorpvp_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `outdoorpvp_template` ( + `TypeId` tinyint(2) unsigned NOT NULL, + `ScriptName` char(64) NOT NULL DEFAULT '', + `comment` text, + PRIMARY KEY (`TypeId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='OutdoorPvP Templates'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `outdoorpvp_template` +-- + +LOCK TABLES `outdoorpvp_template` WRITE; +/*!40000 ALTER TABLE `outdoorpvp_template` DISABLE KEYS */; +/*!40000 ALTER TABLE `outdoorpvp_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `page_text` -- |
