- Fix on pc_skill which fixes overlapping when one gets more than one bonus for the same skill.

- Updated main.sql's loginlog table structure.
- Added svn_update6533.sql to update the loginlog structure as suggested by theultramage.


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6533 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex
2006-05-09 19:28:58 +00:00
parent 24e26035ff
commit 26a517cd08
5 changed files with 14 additions and 5 deletions

View File

@@ -407,10 +407,11 @@ CREATE TABLE `sc_data` (
DROP TABLE IF EXISTS `loginlog`;
CREATE TABLE `loginlog` (
`time` datetime NOT NULL default '0000-00-00 00:00:00',
`ip` varchar(64) NOT NULL default '',
`ip` char(15) NOT NULL default '',
`user` varchar(32) NOT NULL default '',
`rcode` tinyint(4) NOT NULL default '0',
`log` varchar(255) NOT NULL default ''
KEY (`ip`),
) TYPE=MyISAM;
--