aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2022_01_06_75_world_2020_06_24_00_world.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_01_06_75_world_2020_06_24_00_world.sql b/sql/updates/world/master/2022_01_06_75_world_2020_06_24_00_world.sql
new file mode 100644
index 00000000000..df7d800621b
--- /dev/null
+++ b/sql/updates/world/master/2022_01_06_75_world_2020_06_24_00_world.sql
@@ -0,0 +1,11 @@
+DROP TABLE IF EXISTS `battlefield_template`;
+CREATE TABLE `battlefield_template` (
+ `TypeId` tinyint(3) unsigned NOT NULL,
+ `ScriptName` varchar(64) NOT NULL,
+ `comment` text,
+ PRIMARY KEY(`TypeId`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+INSERT INTO `battlefield_template` (`TypeId`, `ScriptName`, `comment`) VALUES
+(1, 'battlefield_wg', NULL),
+(2, 'battlefield_tb', NULL);