mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-04 22:02:15 +02:00
changed file section
This commit is contained in:
@@ -4,6 +4,5 @@ CREATE TABLE "HuntingGroundInfo" (
|
||||
"IsAuto" INTEGER,
|
||||
"CurrentId" INTEGER,
|
||||
"HighestId" INTEGER,
|
||||
"MonsterInfoIndex" INTEGER, -- References MonsterInfo.InvenIndex
|
||||
"PackId" INTEGER
|
||||
);
|
||||
);
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
CREATE TABLE "MapActiveInfo" (
|
||||
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
"Uid" BIGINT NOT NULL,
|
||||
"MapId" INTEGER
|
||||
);
|
||||
"MapId" INTEGER,
|
||||
"ActiveInfo" TEXT
|
||||
);
|
||||
|
||||
@@ -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")
|
||||
);
|
||||
|
||||
@@ -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")
|
||||
);
|
||||
|
||||
6
database/migrations/316_hunting_ground_monster.sql
Normal file
6
database/migrations/316_hunting_ground_monster.sql
Normal 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
|
||||
);
|
||||
10
database/migrations/317_user_quest.sql
Normal file
10
database/migrations/317_user_quest.sql
Normal 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.
|
||||
);
|
||||
3
database/src/db/achievement/mod.rs
Normal file
3
database/src/db/achievement/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub mod achievement_clear_info;
|
||||
pub mod achievement_info;
|
||||
pub mod achievement_update_info;
|
||||
5
database/src/db/action/mod.rs
Normal file
5
database/src/db/action/mod.rs
Normal 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;
|
||||
1
database/src/db/active/mod.rs
Normal file
1
database/src/db/active/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod active_contents_info;
|
||||
5
database/src/db/attendance/mod.rs
Normal file
5
database/src/db/attendance/mod.rs
Normal 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;
|
||||
6
database/src/db/battle/mod.rs
Normal file
6
database/src/db/battle/mod.rs
Normal 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;
|
||||
1
database/src/db/buff/mod.rs
Normal file
1
database/src/db/buff/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod buff_info;
|
||||
4
database/src/db/cafeteria/mod.rs
Normal file
4
database/src/db/cafeteria/mod.rs
Normal 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;
|
||||
4
database/src/db/cash/mod.rs
Normal file
4
database/src/db/cash/mod.rs
Normal 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;
|
||||
4
database/src/db/char/mod.rs
Normal file
4
database/src/db/char/mod.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
pub mod char_awake_info;
|
||||
pub mod char_info;
|
||||
pub mod char_partner_info;
|
||||
pub mod char_scout_info;
|
||||
2
database/src/db/charge/mod.rs
Normal file
2
database/src/db/charge/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
pub mod charge_cost_event_schedule_info;
|
||||
pub mod charge_cost_info;
|
||||
1
database/src/db/community/mod.rs
Normal file
1
database/src/db/community/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod community_reward_info;
|
||||
1
database/src/db/content/mod.rs
Normal file
1
database/src/db/content/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod content_rank_statue_info;
|
||||
2
database/src/db/contents/mod.rs
Normal file
2
database/src/db/contents/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
pub mod contents_char_item_info;
|
||||
pub mod contents_equip_info;
|
||||
1
database/src/db/cost/mod.rs
Normal file
1
database/src/db/cost/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod cost_time_info;
|
||||
4
database/src/db/costume/mod.rs
Normal file
4
database/src/db/costume/mod.rs
Normal 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;
|
||||
1
database/src/db/cs/mod.rs
Normal file
1
database/src/db/cs/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod cs_mini_game_relay_server_info;
|
||||
3
database/src/db/dating/mod.rs
Normal file
3
database/src/db/dating/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub mod dating_episode_info;
|
||||
pub mod dating_info;
|
||||
pub mod dating_message_choice_info;
|
||||
3
database/src/db/deck/mod.rs
Normal file
3
database/src/db/deck/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub mod deck_costume_setting_info;
|
||||
pub mod deck_info;
|
||||
pub mod deck_message_info;
|
||||
3
database/src/db/defense/mod.rs
Normal file
3
database/src/db/defense/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub mod defense_monster_info;
|
||||
pub mod defense_unit_info;
|
||||
pub mod defense_user_info;
|
||||
1
database/src/db/delayed/mod.rs
Normal file
1
database/src/db/delayed/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod delayed_visibility_schedule_info;
|
||||
1
database/src/db/dispatch/mod.rs
Normal file
1
database/src/db/dispatch/mod.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod dispatch_info;
|
||||
1
database/src/db/env/mod.rs
vendored
Normal file
1
database/src/db/env/mod.rs
vendored
Normal file
@@ -0,0 +1 @@
|
||||
pub mod env_info;
|
||||
9
database/src/db/equip/mod.rs
Normal file
9
database/src/db/equip/mod.rs
Normal 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
Reference in New Issue
Block a user