DB Updates

This commit is contained in:
hondacrx
2023-02-12 01:27:24 -05:00
parent 5f07fba067
commit 5803d7e09e
203 changed files with 50267 additions and 46 deletions
@@ -0,0 +1,3 @@
-- TDB 1002.22121 characters
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/10.x/characters', 'ARCHIVED');
@@ -0,0 +1,3 @@
-- delete corrupted trait configs
DELETE FROM `character_trait_entry`;
DELETE FROM `character_trait_config`;
@@ -0,0 +1,2 @@
ALTER TABLE `mail` MODIFY `id` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier';
ALTER TABLE `mail_items` MODIFY `mail_id` bigint unsigned NOT NULL DEFAULT '0';
@@ -0,0 +1,3 @@
ALTER TABLE `character_currency`
ADD `IncreasedCapQuantity` INT UNSIGNED NOT NULL DEFAULT 0 AFTER `TrackedQuantity`,
ADD `EarnedQuantity` INT UNSIGNED NOT NULL DEFAULT 0 AFTER `IncreasedCapQuantity`;