From d2a1fb7acfeadc391e9d4bde0b9158ea03d9fa29 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 25 May 2015 23:49:11 -0500 Subject: [PATCH] Add file 2015_05_25_npc_types_texture_fields.sql --- .../git/required/2015_05_25_npc_types_texture_fields.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 utils/sql/git/required/2015_05_25_npc_types_texture_fields.sql diff --git a/utils/sql/git/required/2015_05_25_npc_types_texture_fields.sql b/utils/sql/git/required/2015_05_25_npc_types_texture_fields.sql new file mode 100644 index 000000000..acd8d26b6 --- /dev/null +++ b/utils/sql/git/required/2015_05_25_npc_types_texture_fields.sql @@ -0,0 +1,6 @@ +ALTER TABLE npc_types +ADD COLUMN `armtexture` tinyint(2) NOT NULL DEFAULT '0' AFTER `raid_target`, +ADD COLUMN `bracertexture` tinyint(2) NOT NULL DEFAULT '0' AFTER `armtexture`, +ADD COLUMN `handtexture` tinyint(2) NOT NULL DEFAULT '0' AFTER `bracertexture`, +ADD COLUMN `legtexture` tinyint(2) NOT NULL DEFAULT '0' AFTER `handtexture`, +ADD COLUMN `feettexture` tinyint(2) NOT NULL DEFAULT '0' AFTER `legtexture`; \ No newline at end of file