Ver código fonte

Fixed syntax error in 'guild' create table statement

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8228 54d463be-8e91-2dee-dedb-b68131a5f0ec
toms 19 anos atrás
pai
commit
c0f0a50c79
2 arquivos alterados com 3 adições e 1 exclusões
  1. 2 0
      Changelog-Trunk.txt
  2. 1 1
      sql-files/main.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.
 
+2006/08/10
+	* Fixed syntax error in 'guild' create table statement [Toms]
 2006/08/09
 	* Fixed Asura not wasting all SP away when it fails on cast-end. [Skotlex]
 	* Fixed homunc skill up bug [Toms]

+ 1 - 1
sql-files/main.sql

@@ -153,7 +153,7 @@ CREATE TABLE `guild` (
   `mes2` varchar(120) NOT NULL default '',
   `emblem_len` int(11) unsigned NOT NULL default '0',
   `emblem_id` int(11) unsigned NOT NULL default '0',
-  `emblem_data` blob ALLOW NULL default NULL,
+  `emblem_data` blob NULL default NULL,
   PRIMARY KEY  (`guild_id`,`char_id`),
   UNIQUE KEY `guild_id` (`guild_id`),
   KEY `char_id` (`char_id`),