chore(DB): import pending files

Referenced commit(s): 46b48cdfa0
This commit is contained in:
github-actions[bot]
2026-03-11 01:12:45 +00:00
parent 46b48cdfa0
commit 803f1c76ff

View File

@@ -0,0 +1,12 @@
-- DB update 2026_03_10_01 -> 2026_03_11_00
--
CREATE TABLE IF NOT EXISTS `spell_jump_distance` (
`ID` int unsigned NOT NULL COMMENT 'spell id',
`JumpDistance` float NOT NULL DEFAULT '0' COMMENT 'max hop distance in yards',
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Per-spell chain jump distance override';
DELETE FROM `spell_jump_distance` WHERE `ID` IN (62131, 64390);
INSERT INTO `spell_jump_distance` (`ID`, `JumpDistance`) VALUES
(62131, 5.0),
(64390, 5.0);