diff options
-rw-r--r-- | Changelog-Trunk.txt | 3 | ||||
-rw-r--r-- | sql-files/upgrade_svn5322.sql | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 0e772a522..9e24f6711 100644 --- a/Changelog-Trunk.txt +++ b/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]
diff --git a/sql-files/upgrade_svn5322.sql b/sql-files/upgrade_svn5322.sql new file mode 100644 index 000000000..6b801a1b3 --- /dev/null +++ b/sql-files/upgrade_svn5322.sql @@ -0,0 +1 @@ +ALTER TABLE `guild` MODIFY `guild_id` int(11) unsigned NOT NULL auto_increment;
|