diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-09-12 12:39:18 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-09-12 12:39:18 +0200 |
commit | d6c20701af8e2b615804a44165c4fc6dc558ad74 (patch) | |
tree | 8aa07f0921b87eb55434f9e3877b73cf4ab1fc17 /src | |
parent | 6bf0f9055faeadabfb32f5a1bd6abe43cc120a25 (diff) | |
download | manaserv-d6c20701af8e2b615804a44165c4fc6dc558ad74.tar.gz manaserv-d6c20701af8e2b615804a44165c4fc6dc558ad74.tar.bz2 manaserv-d6c20701af8e2b615804a44165c4fc6dc558ad74.tar.xz manaserv-d6c20701af8e2b615804a44165c4fc6dc558ad74.zip |
Fixed removal of hardcoded attributes in the MySQL update script
It was trying to remove them from the wrong table.
Diffstat (limited to 'src')
-rw-r--r-- | src/sql/mysql/updates/update_10_to_11.sql | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sql/mysql/updates/update_10_to_11.sql b/src/sql/mysql/updates/update_10_to_11.sql index 66922f14..16408f45 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`; -- |