* Converted itemdb tables to use smallint. Credits to ALZ.

modified   Changelog-Trunk.txt
modified   sql-files/item_db.sql
modified   sql-files/item_db2.sql
added      sql-files/upgrade_svn9135.sql


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9135 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Lance 2006-11-04 14:51:42 +00:00
parent e96bae69e6
commit f49def46aa
4 changed files with 2740 additions and 2736 deletions

View File

@ -3,6 +3,8 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/11/04
* Converted itemdb tables to use smallint. Credits to ALZ. [Lance]
2006/11/01
* Reverted LK_Berserk HP requirement, as everything, including kRO X.2 and
pRO X.3, points that way. [Vicious]

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,7 @@ CREATE TABLE `item_db2` (
`weapon_level` tinyint(2) unsigned default NULL,
`equip_level` tinyint(3) unsigned default NULL,
`refineable` tinyint(1) unsigned default NULL,
`view` tinyint(3) unsigned default NULL,
`view` smallint(3) unsigned default NULL,
`script` text,
`equip_script` text,
`unequip_script` text,

View File

@ -0,0 +1,2 @@
alter table `item_db` modify `view` smallint(3) unsigned default null;
alter table `item_db2` modify `view` smallint(3) unsigned default null;