Skip to content

Commit 1ac0f66

Browse files
author
Github Actions
committed
Merge 3.3.5 to 3.3.5-vas-autobalance
2 parents 9899177 + cbabaa0 commit 1ac0f66

File tree

23 files changed

+353
-288
lines changed

23 files changed

+353
-288
lines changed

sql/base/characters_database.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,7 @@ CREATE TABLE `character_queststatus_seasonal` (
10881088
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
10891089
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
10901090
`event` int unsigned NOT NULL DEFAULT '0' COMMENT 'Event Identifier',
1091+
`completedTime` bigint NOT NULL DEFAULT '0',
10911092
PRIMARY KEY (`guid`,`quest`),
10921093
KEY `idx_guid` (`guid`)
10931094
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
@@ -2688,7 +2689,8 @@ INSERT INTO `updates` VALUES
26882689
('2024_04_10_00_characters.sql','E0D6E19ACE6759332402FA27C23B0F7745C49742','ARCHIVED','2024-04-10 16:07:02',0),
26892690
('2024_08_17_00_characters.sql','08705FBCB8504E8B1009FDAF955F56D734FAD782','ARCHIVED','2024-08-17 22:26:12',0),
26902691
('2024_10_03_00_characters.sql','408249A6992999A36EB94089D184972E8E0767A3','ARCHIVED','2024-10-03 11:10:18',0),
2691-
('2024_11_22_00_characters.sql','9EA2A4F88036D1D5F47EE8A6B634D52D0014986E','ARCHIVED','2024-11-22 23:18:14',0);
2692+
('2024_11_22_00_characters.sql','9EA2A4F88036D1D5F47EE8A6B634D52D0014986E','ARCHIVED','2024-11-22 23:18:14',0),
2693+
('2025_07_20_00_characters_2022_07_03_00_characters.sql','D3F04078C0846BCF7C8330AC20C39B8C3AEE7002','RELEASED','2022-07-03 23:37:24',0);
26922694
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
26932695
UNLOCK TABLES;
26942696

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ALTER TABLE `character_queststatus_seasonal` ADD `completedTime` bigint NOT NULL DEFAULT '0' AFTER `event`;
2+
3+
UPDATE `character_queststatus_seasonal` SET `completedTime` = UNIX_TIMESTAMP();
4+
5+
DELETE FROM `worldstates` WHERE `entry` BETWEEN 1 AND 85;

0 commit comments

Comments
 (0)