mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-17 17:24:33 +00:00
10
data/sql/updates/db_world/2025_01_26_00.sql
Normal file
10
data/sql/updates/db_world/2025_01_26_00.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
-- DB update 2025_01_25_00 -> 2025_01_26_00
|
||||
--
|
||||
DROP TABLE IF EXISTS `creature_sparring`;
|
||||
CREATE TABLE `creature_sparring` (
|
||||
`GUID` int unsigned NOT NULL,
|
||||
`SparringPCT` float NOT NULL,
|
||||
PRIMARY KEY (`GUID`),
|
||||
FOREIGN KEY (`GUID`) REFERENCES creature(`guid`),
|
||||
CONSTRAINT `creature_sparring_chk_1` CHECK (`SparringPCT` BETWEEN 0 AND 100)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
Reference in New Issue
Block a user