From 134989d2f8caa2593987f5ec6513d69f12d0a63b Mon Sep 17 00:00:00 2001
From: ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>
Date: Sat, 16 Apr 2011 18:58:26 +0000
Subject: [PATCH] * Updated field `weapon` in table `char` to default to '0'
 (bare-handed) rather than '1' (knife) (follow up to r11696). - Apply
 upgrade_svn14796.sql to reflect the change on existing setups.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14796 54d463be-8e91-2dee-dedb-b68131a5f0ec
---
 Changelog-Trunk.txt            | 2 ++
 sql-files/main.sql             | 2 +-
 sql-files/upgrade_svn14796.sql | 1 +
 3 files changed, 4 insertions(+), 1 deletion(-)
 create mode 100644 sql-files/upgrade_svn14796.sql

diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index d6d67176f0..41c7f759e3 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -1,6 +1,8 @@
 Date	Added
 
 2011/04/16
+	* Updated field `weapon` in table `char` to default to '0' (bare-handed) rather than '1' (knife) (follow up to r11696). [Ai4rei]
+	- Apply upgrade_svn14796.sql to reflect the change on existing setups.
 	* Some cleanups related to player and monster states. [Ai4rei]
 	- Moved user_font and bg_id out of states as they are data, not states.
 	- Reordered members of state structs so that bitfields are packed together (less memory gets wasted).
diff --git a/sql-files/main.sql b/sql-files/main.sql
index 239f8dac3d..c2a30e086a 100644
--- a/sql-files/main.sql
+++ b/sql-files/main.sql
@@ -83,7 +83,7 @@ CREATE TABLE IF NOT EXISTS `char` (
   `hair` tinyint(4) unsigned NOT NULL default '0',
   `hair_color` smallint(5) unsigned NOT NULL default '0',
   `clothes_color` smallint(5) unsigned NOT NULL default '0',
-  `weapon` smallint(6) unsigned NOT NULL default '1',
+  `weapon` smallint(6) unsigned NOT NULL default '0',
   `shield` smallint(6) unsigned NOT NULL default '0',
   `head_top` smallint(6) unsigned NOT NULL default '0',
   `head_mid` smallint(6) unsigned NOT NULL default '0',
diff --git a/sql-files/upgrade_svn14796.sql b/sql-files/upgrade_svn14796.sql
new file mode 100644
index 0000000000..21c1bcd550
--- /dev/null
+++ b/sql-files/upgrade_svn14796.sql
@@ -0,0 +1 @@
+ALTER TABLE `char` MODIFY `weapon` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0';