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:
parent
33997ac34f
commit
5ec23576c6
@ -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',
|
||||
|
1
sql-files/upgrade_svn13583.sql
Normal file
1
sql-files/upgrade_svn13583.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE `char` CHANGE `manner` `manner` SMALLINT ( 6 ) NOT NULL DEFAULT '0';
|
Loading…
x
Reference in New Issue
Block a user