You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-19 15:06:19 +00:00
fix(furnidata): furnidata_edit_log charset utf8mb3 -> utf8mb4
utf8mb3 is deprecated (removed in MySQL 9.0) and can lose data on emoji / 4-byte characters in audited furni names/descriptions. Use utf8mb4/utf8mb4_unicode_ci (live table converted via ALTER).
This commit is contained in:
@@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS `furnidata_edit_log` (
|
|||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
INDEX `idx_classname` (`classname`),
|
INDEX `idx_classname` (`classname`),
|
||||||
INDEX `idx_user` (`user_id`)
|
INDEX `idx_user` (`user_id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||||
|
|
||||||
INSERT IGNORE INTO `emulator_settings` (`key`,`value`) VALUES
|
INSERT IGNORE INTO `emulator_settings` (`key`,`value`) VALUES
|
||||||
('items.furnidata.edit.backup.keep','10'),
|
('items.furnidata.edit.backup.keep','10'),
|
||||||
|
|||||||
Reference in New Issue
Block a user