* 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:
parent
e96bae69e6
commit
f49def46aa
@ -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
@ -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,
|
||||
|
2
sql-files/upgrade_svn9135.sql
Normal file
2
sql-files/upgrade_svn9135.sql
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user