Corrected the char table's 'manner' column type to match the type used by the server.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13583 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage 2009-03-15 22:48:22 +00:00
parent 33997ac34f
commit 5ec23576c6
2 changed files with 2 additions and 1 deletions

View File

@ -75,7 +75,7 @@ CREATE TABLE IF NOT EXISTS `char` (
`skill_point` int(11) unsigned NOT NULL default '0',
`option` int(11) NOT NULL default '0',
`karma` tinyint(3) NOT NULL default '0',
`manner` tinyint(3) NOT NULL default '0',
`manner` smallint(6) NOT NULL default '0',
`party_id` int(11) unsigned NOT NULL default '0',
`guild_id` int(11) unsigned NOT NULL default '0',
`pet_id` int(11) unsigned NOT NULL default '0',

View File

@ -0,0 +1 @@
ALTER TABLE `char` CHANGE `manner` `manner` SMALLINT ( 6 ) NOT NULL DEFAULT '0';