Sfoglia il codice sorgente

increase some field lengths

warrax 19 anni fa
parent
commit
17838f66ba

+ 1 - 1
datapack_development/sql/character_macroses.sql

@@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS `character_macroses` (
   `char_obj_id` INT NOT NULL DEFAULT 0,
   `id` INT NOT NULL DEFAULT 0,
   `icon` INT,
-  `name` VARCHAR(20) ,
+  `name` VARCHAR(40) ,
   `descr` VARCHAR(80) ,
   `acronym` VARCHAR(4) ,
   `commands` VARCHAR(255) ,

+ 1 - 1
datapack_development/sql/spawnlist.sql

@@ -4,7 +4,7 @@
 DROP TABLE IF EXISTS spawnlist;
 CREATE TABLE spawnlist (
   id int(11) NOT NULL auto_increment,
-  location varchar(19) NOT NULL default '',
+  location varchar(40) NOT NULL default '',
   count int(9) NOT NULL default '0',
   npc_templateid int(9) NOT NULL default '0',
   locx int(9) NOT NULL default '0',