diff options
| author | Shauren <shauren.trinity@gmail.com> | 2024-03-28 21:11:59 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2024-03-28 21:11:59 +0100 |
| commit | c2ac37125b566cb4d9b659bc8ae2d381f60bc6db (patch) | |
| tree | 1664fdb06142dc94cd09d7a1dd7007970e76e5f6 /sql | |
| parent | be11f42a16d1fa0482e9572bf54e99e4dedd3c78 (diff) | |
Core/Players: Use CharBaseInfo.db2 data to determine appropriate race for mercenary mode transforms
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2024_03_28_00_hotfixes.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2024_03_28_00_hotfixes.sql b/sql/updates/hotfixes/master/2024_03_28_00_hotfixes.sql new file mode 100644 index 00000000000..e0e8a296116 --- /dev/null +++ b/sql/updates/hotfixes/master/2024_03_28_00_hotfixes.sql @@ -0,0 +1,12 @@ +-- +-- Table structure for table `char_base_info` +-- +DROP TABLE IF EXISTS `char_base_info`; +CREATE TABLE `char_base_info` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `RaceID` tinyint NOT NULL DEFAULT '0', + `ClassID` tinyint NOT NULL DEFAULT '0', + `OtherFactionRaceID` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
