Removed useless comment columns from the pool system DB tables.

--HG--
branch : trunk
This commit is contained in:
Xanadu
2010-06-14 22:22:11 +02:00
parent c3fed147d7
commit edb8c7a8aa
3 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
UPDATE `pool_creature` SET `description` = `comment` WHERE `comment` <> '' AND `comment` IS NOT NULL AND (`description` = '' OR `description` IS NULL);
ALTER TABLE `pool_creature` DROP COLUMN `comment`;

View File

@@ -0,0 +1,2 @@
UPDATE `pool_template` SET `description` = `comment` WHERE `comment` <> '' AND `comment` IS NOT NULL AND (`description` = '' OR `description` IS NULL);
ALTER TABLE `pool_template` DROP COLUMN `comment`;