mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
12 lines
615 B
SQL
12 lines
615 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_10664_01_characters_arena_team_stats required_10862_01_characters_mail bit;
|
|
|
|
UPDATE mail_items, mail
|
|
SET mail_items.receiver = mail.receiver WHERE mail.id = mail_items.mail_id;
|
|
|
|
DROP TABLE IF EXISTS item_test;
|
|
CREATE TABLE item_test
|
|
SELECT mi.mail_id, mi.item_guid FROM mail_items as mi WHERE mi.mail_id NOT IN (SELECT id FROM mail);
|
|
|
|
DELETE item_instance FROM item_instance, item_test WHERE item_instance.guid = item_test.item_guid;
|
|
DELETE mail_items FROM mail_items, item_test WHERE mail_items.mail_id = item_test.mail_id;
|
|
DROP TABLE IF EXISTS item_test;
|