summaryrefslogtreecommitdiffstats
path: root/src/sql
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-09-12 12:39:18 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-09-12 12:39:18 +0200
commitd6c20701af8e2b615804a44165c4fc6dc558ad74 (patch)
tree8aa07f0921b87eb55434f9e3877b73cf4ab1fc17 /src/sql
parent6bf0f9055faeadabfb32f5a1bd6abe43cc120a25 (diff)
downloadmanaserv-d6c20701af8e2b615804a44165c4fc6dc558ad74.tar.gz
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/sql')
-rw-r--r--src/sql/mysql/updates/update_10_to_11.sql14
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 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`;
--