diff options
| author | Shauren <shauren.trinity@gmail.com> | 2022-12-17 20:27:13 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-12-17 20:27:13 +0100 |
| commit | 0555ab2f56e5ad326948df96f5c2e35254e0cf4f (patch) | |
| tree | e04eba976ec67bcade40d1b3bfed778a438abe86 /sql/updates | |
| parent | e275c39586dba170c931b972aa7e9cc3c691a533 (diff) | |
Core/Players: Implemented setting tradeskill recipes as favorite
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/characters/master/2022_12_17_00_characters.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/characters/master/2022_12_17_00_characters.sql b/sql/updates/characters/master/2022_12_17_00_characters.sql new file mode 100644 index 00000000000..d9a6b09da7a --- /dev/null +++ b/sql/updates/characters/master/2022_12_17_00_characters.sql @@ -0,0 +1,9 @@ +-- +-- Table structure for table `character_spell_favorite` +-- +DROP TABLE IF EXISTS `character_spell_favorite`; +CREATE TABLE `character_spell_favorite` ( + `guid` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', + `spell` int unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier', + PRIMARY KEY (`guid`,`spell`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System'; |
