changed file section

This commit is contained in:
yoncodes
2025-10-29 14:13:47 -04:00
parent 1badd8cb4f
commit 397c34bec1
1568 changed files with 3068 additions and 3575 deletions

View File

@@ -4,6 +4,5 @@ CREATE TABLE "HuntingGroundInfo" (
"IsAuto" INTEGER,
"CurrentId" INTEGER,
"HighestId" INTEGER,
"MonsterInfoIndex" INTEGER, -- References MonsterInfo.InvenIndex
"PackId" INTEGER
);
);

View File

@@ -1,5 +1,6 @@
CREATE TABLE "MapActiveInfo" (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"MapId" INTEGER
);
"MapId" INTEGER,
"ActiveInfo" TEXT
);

View File

@@ -1,9 +1,10 @@
CREATE TABLE "QuestLevelInfo" (
CREATE TABLE QuestLevelInfo (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"PackId" INTEGER,
"PackId" INTEGER NOT NULL DEFAULT 1,
"QuestLevel" INTEGER,
"ClearQuest" INTEGER,
"QuestOpt" INTEGER,
"IsLevelComplete" INTEGER
);
"IsLevelComplete" INTEGER,
UNIQUE("Uid", "PackId")
);

View File

@@ -1,6 +1,7 @@
CREATE TABLE "QuestMaxClearInfo" (
CREATE TABLE QuestMaxClearInfo (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"PackId" INTEGER,
"MaxClearId" INTEGER
);
"PackId" INTEGER NOT NULL DEFAULT 1,
"MaxClearId" INTEGER,
UNIQUE("Uid", "PackId")
);

View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS HuntingGroundMonster (
"HuntingGroundIndex" INTEGER NOT NULL,
"MonsterIndex" INTEGER NOT NULL,
FOREIGN KEY("HuntingGroundIndex") REFERENCES HuntingGroundInfo("Index") ON DELETE CASCADE,
FOREIGN KEY("MonsterIndex") REFERENCES MonsterInfo("Index") ON DELETE CASCADE
);

View File

@@ -0,0 +1,10 @@
CREATE TABLE "UserQuest" (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"QuestId" INTEGER NOT NULL,
"PackId" INTEGER,
"Status" INTEGER DEFAULT 0, -- 0 = not accepted, 1 = in progress, 2 = completed, 3 = reward claimed
"Progress" INTEGER DEFAULT 0, -- quest progress (from questValue[0])
"RewardClaimed" INTEGER DEFAULT 0, -- 0 = false, 1 = true
"LastUpdate" BIGINT -- timestamp for daily resets, analytics, etc.
);

View File

@@ -0,0 +1,3 @@
pub mod achievement_clear_info;
pub mod achievement_info;
pub mod achievement_update_info;

View File

@@ -0,0 +1,5 @@
pub mod action_matching_client_info;
pub mod action_monster_state_info;
pub mod action_player_state_info;
pub mod action_relay_user_info;
pub mod action_user_info;

View File

@@ -0,0 +1 @@
pub mod active_contents_info;

View File

@@ -0,0 +1,5 @@
pub mod attendance_always_info;
pub mod attendance_event_reward_obtain_info;
pub mod attendance_info;
pub mod attendance_limit_info;
pub mod attendance_package_info;

View File

@@ -0,0 +1,6 @@
pub mod battle_char_info;
pub mod battle_damage_info;
pub mod battle_golem_info;
pub mod battle_grid_type_item_info;
pub mod battle_result_info;
pub mod battle_statistics_info;

View File

@@ -0,0 +1 @@
pub mod buff_info;

View File

@@ -0,0 +1,4 @@
pub mod cafeteria_facility_info;
pub mod cafeteria_info;
pub mod cafeteria_part_time_manager_info;
pub mod cafeteria_regular_costume_note_info;

View File

@@ -0,0 +1,4 @@
pub mod cash_mail_info;
pub mod cash_product_info;
pub mod cash_shop_info;
pub mod cash_shop_purchase_count_info;

View File

@@ -0,0 +1,4 @@
pub mod char_awake_info;
pub mod char_info;
pub mod char_partner_info;
pub mod char_scout_info;

View File

@@ -0,0 +1,2 @@
pub mod charge_cost_event_schedule_info;
pub mod charge_cost_info;

View File

@@ -0,0 +1 @@
pub mod community_reward_info;

View File

@@ -0,0 +1 @@
pub mod content_rank_statue_info;

View File

@@ -0,0 +1,2 @@
pub mod contents_char_item_info;
pub mod contents_equip_info;

View File

@@ -0,0 +1 @@
pub mod cost_time_info;

View File

@@ -0,0 +1,4 @@
pub mod costume_base_info;
pub mod costume_info;
pub mod costume_potential_connect_info;
pub mod costume_use_info;

View File

@@ -0,0 +1 @@
pub mod cs_mini_game_relay_server_info;

View File

@@ -0,0 +1,3 @@
pub mod dating_episode_info;
pub mod dating_info;
pub mod dating_message_choice_info;

View File

@@ -0,0 +1,3 @@
pub mod deck_costume_setting_info;
pub mod deck_info;
pub mod deck_message_info;

View File

@@ -0,0 +1,3 @@
pub mod defense_monster_info;
pub mod defense_unit_info;
pub mod defense_user_info;

View File

@@ -0,0 +1 @@
pub mod delayed_visibility_schedule_info;

View File

@@ -0,0 +1 @@
pub mod dispatch_info;

1
database/src/db/env/mod.rs vendored Normal file
View File

@@ -0,0 +1 @@
pub mod env_info;

View File

@@ -0,0 +1,9 @@
pub mod equip_base_info;
pub mod equip_batch_use_info;
pub mod equip_clear_info;
pub mod equip_info;
pub mod equip_option_info;
pub mod equip_preset_char_info;
pub mod equip_preset_info;
pub mod equip_preset_item_info;
pub mod equip_storage_info;

Some files were not shown because too many files have changed in this diff Show More