update transmog.sql to utf8mb4

This commit is contained in:
Kitzunu
2025-03-02 01:00:38 +01:00
committed by GitHub
parent 99e7088873
commit 5231f59b4d

View File

@@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS `custom_transmogrification` (
`Owner` int(10) unsigned NOT NULL COMMENT 'Player guidLow',
PRIMARY KEY (`GUID`),
KEY `Owner` (`Owner`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='6_2';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='6_2';
-- Data exporting was unselected.
@@ -17,10 +17,10 @@ CREATE TABLE IF NOT EXISTS `custom_transmogrification_sets` (
`SetName` text COMMENT 'SetName',
`SetData` text COMMENT 'Slot1 Entry1 Slot2 Entry2',
PRIMARY KEY (`Owner`,`PresetID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='6_1';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='6_1';
CREATE TABLE IF NOT EXISTS `custom_unlocked_appearances` (
`account_id` int(10) unsigned NOT NULL,
`item_template_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`account_id`, `item_template_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8;
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;