From f541b77d2ee0cad675ac60897e136322555ef5bc Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Wed, 4 Apr 2012 20:23:35 +0200 Subject: Added mysql update script for the special commit Forgot to add this to git when doing the commit. Sorry. Reviewed-by: bjorn. --- src/sql/mysql/updates/update_20_to_21.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/sql/mysql/updates/update_20_to_21.sql (limited to 'src/sql') diff --git a/src/sql/mysql/updates/update_20_to_21.sql b/src/sql/mysql/updates/update_20_to_21.sql new file mode 100644 index 00000000..d66f2208 --- /dev/null +++ b/src/sql/mysql/updates/update_20_to_21.sql @@ -0,0 +1,11 @@ +BEGIN; + +ALTER TABLE mana_char_specials ADD COLUMN special_current_mana int(10) unsigned NOT NULL; + +-- Update database version. +UPDATE mana_world_states + SET value = '21', + moddate = UNIX_TIMESTAMP() + WHERE state_name = 'database_version'; + +END; -- cgit v1.2.3-60-g2f50