Browse Source

Fixed the loginlog's `user` column length (use upgrade_svn9957.sql)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9957 54d463be-8e91-2dee-dedb-b68131a5f0ec
ultramage 18 years ago
parent
commit
3c9f1094b5
2 changed files with 3 additions and 0 deletions
  1. 2 0
      Changelog-Trunk.txt
  2. 1 0
      sql-files/upgrade_svn9957.sql

+ 2 - 0
Changelog-Trunk.txt

@@ -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.
 
+2007/03/06
+	* Fixed the loginlog's `user` column length (use upgrade_svn9957.sql)
 2007/03/05
 	* More tweaks to socket.c to simplify the code [ultramage]
 	- many generic cleanups - reformatting, useless code removal, etc

+ 1 - 0
sql-files/upgrade_svn9957.sql

@@ -0,0 +1 @@
+alter table `loginlog` modify `user` varchar(255) NOT NULL default '';