- 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
This commit is contained in:
skotlex 2006-02-18 07:06:37 +00:00
parent 3804e1684f
commit be658f0edf
2 changed files with 4 additions and 0 deletions

View File

@ -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]

View File

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