From 07348ff4af2ff0fe7a300129896dc4ec8db431cc Mon Sep 17 00:00:00 2001 From: Shauren Date: Fri, 6 Aug 2010 13:47:17 +0200 Subject: Added ScriptName to battleground_template for script system rewrite --HG-- branch : trunk --- sql/base/world_database.sql | 1 + sql/updates/9193_world_battleground_template.sql | 1 + 2 files changed, 2 insertions(+) create mode 100644 sql/updates/9193_world_battleground_template.sql (limited to 'sql') diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index a8d2f1530e9..2f2fb86997e 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -241,6 +241,7 @@ CREATE TABLE `battleground_template` ( `HordeStartLoc` mediumint(8) unsigned NOT NULL, `HordeStartO` float NOT NULL, `Weight` tinyint(2) unsigned NOT NULL DEFAULT 1, + `ScriptName` char(64) NOT NULL DEFAULT '', `Comment` char(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/sql/updates/9193_world_battleground_template.sql b/sql/updates/9193_world_battleground_template.sql new file mode 100644 index 00000000000..4a83af07e04 --- /dev/null +++ b/sql/updates/9193_world_battleground_template.sql @@ -0,0 +1 @@ +ALTER TABLE `battleground_template` ADD `ScriptName` char(64) NOT NULL DEFAULT '' AFTER `Weight`; -- cgit v1.2.3