浏览代码

- Added upgrade file upgrade_svn5322.sql because apparently not everyone has the guild table with autoincremental guild_id defined.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5322 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 19 年之前
父节点
当前提交
be658f0edf
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 3 0
      Changelog-Trunk.txt
  2. 1 0
      sql-files/upgrade_svn5322.sql

+ 3 - 0
Changelog-Trunk.txt

@@ -5,6 +5,9 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.  EV
 GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
 
 2006/02/18
+	* Added upgrade file upgrade_svn5322.sql because apparently not everyone
+	  has the guild table with autoincremental guild_id defined. [Skotlex]
+	- If you can't create guilds, chances are you need to apply this ugprade.
 	* Fixed a missing break that was making Heal, Resurrection and some others
 	  become attack skills [Skotlex]
 	* Some CELL_NOSTACK Mod updates: [Skotlex]

+ 1 - 0
sql-files/upgrade_svn5322.sql

@@ -0,0 +1 @@
+ALTER TABLE `guild` MODIFY `guild_id` int(11) unsigned NOT NULL auto_increment;