aboutsummaryrefslogtreecommitdiff
path: root/sql/world.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/world.sql')
-rw-r--r--sql/world.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/world.sql b/sql/world.sql
index 4d1313c4c65..21ae1fe7a35 100644
--- a/sql/world.sql
+++ b/sql/world.sql
@@ -139,6 +139,17 @@ CREATE TABLE `areatrigger_teleport` (
SET character_set_client = @saved_cs_client;
--
+-- Table structure for table `autobroadcast`
+--
+
+DROP TABLE IF EXISTS `autobroadcast`;
+CREATE TABLE `autobroadcast` (
+`id` int(11) NOT NULL AUTO_INCREMENT,
+`text` longtext NOT NULL,
+PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
-- Table structure for table `battleground_template`
--