mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 03:15:41 +00:00
Merge branch 'master' into Playerbot
This commit is contained in:
5
data/sql/updates/db_auth/2025_02_16_00.sql
Normal file
5
data/sql/updates/db_auth/2025_02_16_00.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
-- DB update 2025_01_26_00 -> 2025_02_16_00
|
||||
--
|
||||
ALTER TABLE `autobroadcast_locale`
|
||||
DROP PRIMARY KEY,
|
||||
ADD PRIMARY KEY (`realmid`, `id`, `locale`);
|
||||
11
data/sql/updates/db_auth/2025_02_16_01.sql
Normal file
11
data/sql/updates/db_auth/2025_02_16_01.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
-- DB update 2025_02_16_00 -> 2025_02_16_01
|
||||
--
|
||||
ALTER TABLE `updates`
|
||||
CHANGE COLUMN `state` `state` ENUM('RELEASED','CUSTOM','MODULE','ARCHIVED','PENDING') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.' COLLATE 'utf8mb4_unicode_ci' AFTER `hash`;
|
||||
|
||||
ALTER TABLE `updates_include`
|
||||
CHANGE COLUMN `state` `state` ENUM('RELEASED','ARCHIVED','CUSTOM','PENDING') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.' COLLATE 'utf8mb4_unicode_ci' AFTER `path`;
|
||||
|
||||
DELETE FROM `updates_include` WHERE `path` = '$/data/sql/updates/pending_db_auth';
|
||||
INSERT INTO `updates_include` (`path`, `state`) VALUES
|
||||
('$/data/sql/updates/pending_db_auth', 'PENDING');
|
||||
Reference in New Issue
Block a user