base: DestinyCore upstream @2d631f4e (fork SylvaniaCore ; sql/old retire)

This commit is contained in:
SylvaniaCore deploy
2026-06-17 09:00:37 +00:00
commit f8fcb8ad38
4834 changed files with 2810723 additions and 0 deletions
@@ -0,0 +1,43 @@
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for account_battlepet
-- ----------------------------
DROP TABLE IF EXISTS `account_battlepet`;
CREATE TABLE `account_battlepet` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`account` int(10) UNSIGNED NOT NULL DEFAULT 0,
`slot` int(11) NOT NULL DEFAULT -1,
`name` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`nameTimeStamp` int(10) UNSIGNED NOT NULL DEFAULT 0,
`species` int(10) UNSIGNED NOT NULL DEFAULT 0,
`quality` int(10) UNSIGNED NOT NULL DEFAULT 0,
`breed` int(10) UNSIGNED NOT NULL DEFAULT 0,
`level` int(10) UNSIGNED NOT NULL DEFAULT 0,
`xp` int(10) UNSIGNED NOT NULL DEFAULT 0,
`display` int(10) UNSIGNED NOT NULL DEFAULT 0,
`health` int(11) NOT NULL DEFAULT 0,
`flags` int(10) UNSIGNED NOT NULL DEFAULT 0,
`infoPower` int(11) NOT NULL DEFAULT 0,
`infoMaxHealth` int(11) NOT NULL DEFAULT 0,
`infoSpeed` int(11) NOT NULL DEFAULT 0,
`infoGender` int(11) NOT NULL DEFAULT 0,
`declinedGenitive` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`declinedNative` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`declinedAccusative` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`declinedInstrumental` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`declinedPrepositional` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `account`(`account`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 28 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of account_battlepet
-- ----------------------------
INSERT INTO `account_battlepet` VALUES (1, 24, -1, '', 0, 379, 0, 10, 1, 0, 134, 142, 0, 8, 142, 8, 1, '', '', '', '', '');
INSERT INTO `account_battlepet` VALUES (3, 25, -1, '', 0, 1934, 3, 8, 1, 0, 0, 155, 0, 11, 155, 10, 1, '', '', '', '', '');
INSERT INTO `account_battlepet` VALUES (4, 24, 0, 'Shiko', 1584803282, 225, 2, 6, 12, 170, 0, 820, 1, 115, 820, 115, 1, '', '', '', '', '');
INSERT INTO `account_battlepet` VALUES (5, 25, 0, '', 0, 196, 2, 8, 1, 0, 0, 17, 0, 10, 151, 10, 1, '', '', '', '', '');
SET FOREIGN_KEY_CHECKS = 1;
@@ -0,0 +1,75 @@
/*Table structure for table `challenge` */
DROP TABLE IF EXISTS `challenge`;
CREATE TABLE `challenge` (
`ID` int(11) NOT NULL,
`GuildID` bigint(20) NOT NULL DEFAULT '0',
`MapID` mediumint(9) NOT NULL DEFAULT '0',
`ChallengeID` mediumint(6) NOT NULL DEFAULT '0',
`RecordTime` int(11) NOT NULL DEFAULT '0',
`Date` int(11) NOT NULL DEFAULT '0',
`ChallengeLevel` smallint(6) NOT NULL DEFAULT '0',
`TimerLevel` smallint(6) NOT NULL DEFAULT '0',
`Affixes` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`ChestID` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`) USING BTREE,
KEY `mapID` (`MapID`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
/*Data for the table `challenge` */
/*Table structure for table `challenge_key` */
DROP TABLE IF EXISTS `challenge_key`;
CREATE TABLE `challenge_key` (
`guid` int(10) NOT NULL DEFAULT '0',
`ID` mediumint(6) unsigned NOT NULL DEFAULT '0',
`Level` tinyint(3) unsigned NOT NULL DEFAULT '0',
`Affix` tinyint(3) unsigned NOT NULL DEFAULT '0',
`Affix1` tinyint(3) unsigned NOT NULL DEFAULT '0',
`Affix2` tinyint(3) unsigned NOT NULL DEFAULT '0',
`KeyIsCharded` tinyint(3) unsigned NOT NULL DEFAULT '0',
`timeReset` int(10) unsigned NOT NULL DEFAULT '0',
`InstanceID` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`) USING BTREE,
KEY `guid` (`guid`) USING BTREE,
KEY `timeReset` (`timeReset`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
/*Data for the table `challenge_key` */
/*Table structure for table `challenge_member` */
DROP TABLE IF EXISTS `challenge_member`;
CREATE TABLE `challenge_member` (
`id` int(11) NOT NULL,
`member` bigint(20) NOT NULL DEFAULT '0',
`specID` mediumint(6) NOT NULL DEFAULT '0',
`ChallengeLevel` smallint(6) NOT NULL DEFAULT '0',
`Date` int(10) NOT NULL DEFAULT '0',
`ChestID` int(10) NOT NULL DEFAULT '0',
KEY `id` (`id`,`member`) USING BTREE,
KEY `member` (`member`) USING BTREE,
KEY `Date` (`Date`) USING BTREE,
KEY `ChallengeLevel` (`ChallengeLevel`) USING BTREE,
KEY `ChestID` (`ChestID`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
/*Data for the table `challenge_member` */
/*Table structure for table `challenge_oplote_loot` */
DROP TABLE IF EXISTS `challenge_oplote_loot`;
CREATE TABLE `challenge_oplote_loot` (
`guid` int(10) NOT NULL DEFAULT '0',
`chestListID` varchar(150) NOT NULL DEFAULT '',
`date` int(10) NOT NULL DEFAULT '0',
`ChallengeLevel` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
/*Data for the table `challenge_oplote_loot` */
@@ -0,0 +1,11 @@
DROP TABLE IF EXISTS `character_garrison_work_order`;
CREATE TABLE IF NOT EXISTS `character_garrison_work_order` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`garrison_id` bigint(20) unsigned NOT NULL,
`plot_instance_id` int(10) unsigned NOT NULL,
`shipment_id` int(10) unsigned NOT NULL,
`creation_time` int(10) unsigned NOT NULL,
`complete_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `garrison_id` (`garrison_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -0,0 +1,11 @@
DROP TABLE IF EXISTS `character_garrison_missions`;
CREATE TABLE `character_garrison_missions` (
`dbId` bigint(20) unsigned NOT NULL,
`guid` bigint(20) unsigned NOT NULL,
`garrison_type` tinyint(3) unsigned NOT NULL,
`missionId` int(10) unsigned NOT NULL,
`offerTime` int(10) unsigned NOT NULL,
`startTime` int(10) unsigned NOT NULL,
`status` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`dbId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `guild_reputation`;
CREATE TABLE `guild_reputation` (
`guid` int unsigned NOT NULL,
`guild` int unsigned NOT NULL,
`reputation` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
View File