Increased variable size for status/skill points to remove the 65k cap (bugreport:1579).

Added sql upgrade script to adjust the appropriate char table columns.
This is an enhancement to r5762.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13541 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage
2009-02-20 19:47:17 +00:00
parent 8326096602
commit c2cc0763d9
8 changed files with 31 additions and 67 deletions

View File

@@ -0,0 +1,2 @@
ALTER TABLE `char` CHANGE `status_point` `status_point` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0';
ALTER TABLE `char` CHANGE `skill_point` `skill_point` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0';