forked from cooler-SAI/pandaria_5.4.8
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
391 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
-- new keychain table struct | ||
DROP TABLE IF EXISTS `keychain`; | ||
CREATE TABLE `keychain` ( | ||
`ID` int unsigned NOT NULL DEFAULT '0', | ||
`Key1` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key2` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key3` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key4` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key5` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key6` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key7` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key8` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key9` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key10` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key11` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key12` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key13` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key14` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key15` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key16` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key17` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key18` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key19` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key20` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key21` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key22` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key23` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key24` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key25` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key26` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key27` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key28` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key29` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key30` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key31` tinyint unsigned NOT NULL DEFAULT '0', | ||
`Key32` tinyint unsigned NOT NULL DEFAULT '0', | ||
`VerifiedBuild` int NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`ID`,`VerifiedBuild`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
|
||
INSERT IGNORE INTO `keychain`(`ID`, `Key1`, `Key2`, `Key3`, `Key4`, `Key5`, `Key6`, `Key7`, `Key8`, `Key9`, `Key10`, `Key11`, `Key12`, `Key13`, `Key14`, `Key15`, `Key16`, `Key17`, `Key18`, `Key19`, `Key20`, `Key21`, `Key22`, `Key23`, `Key24`, `Key25`, `Key26`, `Key27`, `Key28`, `Key29`, `Key30`, `Key31`, `Key32`,`VerifiedBuild`) | ||
SELECT `keyId`, `k1`, `k2`, `k3`, `k4`, `k5`, `k6`, `k7`, `k8`, `k9`, `k10`, `k11`, `k12`, `k13`, `k14`, `k15`, `k16`, `k17`, `k18`, `k19`, `k20`, `k21`, `k22`, `k23`, `k24`, `k25`, `k26`, `k27`, `k28`, `k29`, `k30`, `k31`, `k32`, 0 | ||
FROM `keychain_db2`; | ||
|
||
DROP TABLE IF EXISTS `keychain_db2`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.