-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
11 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,6 @@ | ||
/* | ||
* DB changes since 9556a4b (30.11.2024) | ||
* DB changes since 183e689 (08.12.2024) | ||
*/ | ||
|
||
ALTER TABLE `legion_history` DROP COLUMN `tab_id`; | ||
|
||
-- drop advent calendar table | ||
drop table advent; | ||
|
||
-- create advent calendar table | ||
CREATE TABLE `advent` ( | ||
`account_id` int(11) NOT NULL, | ||
`last_day_received` tinyint(4) NOT NULL, | ||
PRIMARY KEY (`account_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
|
||
ALTER TABLE `player_veteran_rewards` CHANGE COLUMN `received_months` `received_months` TINYINT UNSIGNED NOT NULL DEFAULT 0 AFTER `player_id`; | ||
-- remove old event items | ||
DELETE FROM inventory WHERE item_id IN (182007148, 186000177, 186000381, 188052986, 188052987, 188052988, 188052989, 188052990, 188052991, 188052992, 188052993, 188052994, 188052995, 188052996, 188052997, 188052998, 188052999, 188100148, 188100149); |