feat(Core/Player): Implement player specific settings (#9483)

This commit is contained in:
Skjalf
2021-12-26 08:39:15 -03:00
committed by GitHub
parent d2950b21b9
commit 58302e4196
19 changed files with 381 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
INSERT INTO `version_db_characters` (`sql_rev`) VALUES ('1638643807174948000');
DROP TABLE IF EXISTS `character_settings`;
CREATE TABLE IF NOT EXISTS `character_settings` (
`guid` INT UNSIGNED NOT NULL,
`source` VARCHAR(40) NOT NULL,
`data` TEXT NULL,
PRIMARY KEY (`guid`, `source`)
) ENGINE=MYISAM DEFAULT CHARSET=utf8mb4 COMMENT='Player Settings';