From d6c20701af8e2b615804a44165c4fc6dc558ad74 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Sun, 12 Sep 2010 12:39:18 +0200 Subject: Fixed removal of hardcoded attributes in the MySQL update script It was trying to remove them from the wrong table. --- src/sql/mysql/updates/update_10_to_11.sql | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/sql/mysql') diff --git a/src/sql/mysql/updates/update_10_to_11.sql b/src/sql/mysql/updates/update_10_to_11.sql index 66922f1..16408f4 100644 --- a/src/sql/mysql/updates/update_10_to_11.sql +++ b/src/sql/mysql/updates/update_10_to_11.sql @@ -5,13 +5,13 @@ -- into their replacement structures. -- -ALTER TABLE `mana_char_attr` DROP `money`; -ALTER TABLE `mana_char_attr` DROP `str`; -ALTER TABLE `mana_char_attr` DROP `agi`; -ALTER TABLE `mana_char_attr` DROP `vit`; -ALTER TABLE `mana_char_attr` DROP `int`; -ALTER TABLE `mana_char_attr` DROP `dex`; -ALTER TABLE `mana_char_attr` DROP `will`; +ALTER TABLE `mana_characters` DROP `money`; +ALTER TABLE `mana_characters` DROP `str`; +ALTER TABLE `mana_characters` DROP `agi`; +ALTER TABLE `mana_characters` DROP `vit`; +ALTER TABLE `mana_characters` DROP `int`; +ALTER TABLE `mana_characters` DROP `dex`; +ALTER TABLE `mana_characters` DROP `will`; -- -- cgit