aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authormegamage <none@none>2009-05-19 15:43:17 -0500
committermegamage <none@none>2009-05-19 15:43:17 -0500
commitac33cb94f3366a853463563d7e047dd60a1e9180 (patch)
tree7d438e90b99cc4b49495e38249fbb88c26842b05 /sql/updates
parent1e3591d4e957d4de1c1bf95ca377834132db1b03 (diff)
[7855] Add description command to pool_* tables for simplify DB development. Author: Seizerkiller
Note: this fields not used and not loaded by mangos. --HG-- branch : trunk
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/7855_01_mangos_pools.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/7855_01_mangos_pools.sql b/sql/updates/7855_01_mangos_pools.sql
new file mode 100644
index 00000000000..b5ac676c3e1
--- /dev/null
+++ b/sql/updates/7855_01_mangos_pools.sql
@@ -0,0 +1,13 @@
+ALTER TABLE db_version CHANGE COLUMN required_7850_01_mangos_command required_7855_01_mangos_pools bit;
+
+ALTER TABLE pool_creature
+ ADD COLUMN description varchar(255) NOT NULL AFTER chance;
+
+ALTER TABLE pool_gameobject
+ ADD COLUMN description varchar(255) NOT NULL AFTER chance;
+
+ALTER TABLE pool_pool
+ ADD COLUMN description varchar(255) NOT NULL AFTER chance;
+
+ALTER TABLE pool_template
+ ADD COLUMN description varchar(255) NOT NULL AFTER max_limit;