lua_file set to not include default value since mysql is picky
This commit is contained in:
parent
3d3ea08dde
commit
a718618909
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ CREATE TABLE character_spell_effects (
|
||||||
tier tinyint(3) unsigned NOT NULL DEFAULT 0,
|
tier tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||||
total_time float unsigned NOT NULL DEFAULT 0,
|
total_time float unsigned NOT NULL DEFAULT 0,
|
||||||
expire_timestamp int(10) unsigned NOT NULL DEFAULT 0,
|
expire_timestamp int(10) unsigned NOT NULL DEFAULT 0,
|
||||||
lua_file text not null default '',
|
lua_file text,
|
||||||
custom_spell tinyint(3) unsigned NOT NULL DEFAULT 0,
|
custom_spell tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||||
charid int(10) unsigned NOT NULL DEFAULT 0,
|
charid int(10) unsigned NOT NULL DEFAULT 0,
|
||||||
damage_remaining int(10) unsigned NOT NULL DEFAULT 0,
|
damage_remaining int(10) unsigned NOT NULL DEFAULT 0,
|
||||||
|
|
Loading…
Reference in a new issue