[chusan] Add Chunithm New support

This commit is contained in:
Dom Eori
2022-03-11 16:26:38 +09:00
parent ee6d28bd00
commit 1c6f12752e
88 changed files with 6054 additions and 0 deletions

View File

@@ -0,0 +1,443 @@
CREATE TABLE chusan_game_event (
id INTEGER NOT NULL,
end_date DATETIME,
start_date DATETIME,
type INTEGER NOT NULL,
enable BOOLEAN NOT NULL,
PRIMARY KEY (
id
)
);
CREATE TABLE chusan_game_charge (
id INTEGER,
charge_id INTEGER UNIQUE,
end_date DATETIME,
order_id INTEGER NOT NULL,
price INTEGER NOT NULL,
sale_end_date DATETIME,
sale_price INTEGER NOT NULL,
sale_start_date DATETIME,
start_date DATETIME,
PRIMARY KEY (
id
)
);
CREATE TABLE chusan_user_data (
id INTEGER,
user_name VARCHAR (255),
level INTEGER,
reincarnation_num INTEGER,
exp VARCHAR (255),
point BIGINT,
total_point BIGINT,
play_count INTEGER,
multi_play_count INTEGER,
player_rating INTEGER,
highest_rating INTEGER,
nameplate_id INTEGER,
frame_id INTEGER,
character_id INTEGER,
trophy_id INTEGER,
played_tutorial_bit INTEGER,
first_tutorial_cancel_num INTEGER,
master_tutorial_cancel_num INTEGER,
total_map_num INTEGER,
total_hi_score BIGINT,
total_basic_high_score BIGINT,
total_advanced_high_score BIGINT,
total_expert_high_score BIGINT,
total_master_high_score BIGINT,
total_ultima_high_score BIGINT,
event_watched_date DATETIME,
friend_count INTEGER,
first_game_id VARCHAR (255),
first_rom_version VARCHAR (255),
first_data_version VARCHAR (255),
first_play_date DATETIME,
last_game_id VARCHAR (255),
last_rom_version VARCHAR (255),
last_data_version VARCHAR (255),
last_login_date DATETIME,
last_play_date DATETIME,
last_place_id INTEGER,
last_place_name VARCHAR (255),
last_region_id VARCHAR (255),
last_region_name VARCHAR (255),
last_all_net_id VARCHAR (255),
last_client_id VARCHAR (255),
last_country_code VARCHAR (255),
user_name_ex VARCHAR (255),
compatible_cm_version VARCHAR (255),
medal INTEGER,
map_icon_id INTEGER,
voice_id INTEGER,
avatar_wear INTEGER,
avatar_head INTEGER,
avatar_face INTEGER,
avatar_skin INTEGER,
avatar_item INTEGER,
avatar_front INTEGER,
avatar_back INTEGER,
class_emblem_base INTEGER,
class_emblem_medal INTEGER,
stocked_grid_count INTEGER,
ex_map_loop_count INTEGER,
net_battle_play_count INTEGER,
net_battle_win_count INTEGER,
net_battle_lose_count INTEGER,
net_battle_consecutive_win_count INTEGER,
chara_illust_id INTEGER,
skill_id INTEGER,
over_power_point INTEGER,
over_power_rate INTEGER,
over_power_lower_rank INTEGER,
avatar_point INTEGER,
battle_rank_id INTEGER,
battle_rank_point INTEGER,
elite_rank_point INTEGER,
net_battle1st_count INTEGER,
net_battle2nd_count INTEGER,
net_battle3rd_count INTEGER,
net_battle4th_count INTEGER,
net_battle_correction INTEGER,
net_battle_err_cnt INTEGER,
net_battle_host_err_cnt INTEGER,
battle_reward_status INTEGER,
battle_reward_index INTEGER,
battle_reward_count INTEGER,
ext1 INTEGER,
ext2 INTEGER,
ext3 INTEGER,
ext4 INTEGER,
ext5 INTEGER,
ext6 INTEGER,
ext7 INTEGER,
ext8 INTEGER,
ext9 INTEGER,
ext10 INTEGER,
ext_str1 VARCHAR (255),
ext_str2 VARCHAR (255),
ext_long1 BIGINT,
ext_long2 BIGINT,
rank_up_challenge_results VARCHAR (255),
is_net_battle_host boolean,
net_battle_end_state INTEGER,
card_id BIGINT REFERENCES sega_card (id) ON DELETE CASCADE,
PRIMARY KEY (
id
)
);
CREATE TABLE chusan_user_activity (
id INTEGER,
activity_id INTEGER,
kind INTEGER NOT NULL,
param1 INTEGER NOT NULL,
param2 INTEGER NOT NULL,
param3 INTEGER NOT NULL,
param4 INTEGER NOT NULL,
sort_number INTEGER NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_activity_uq UNIQUE (
activity_id,
kind,
user_id
)
ON CONFLICT REPLACE
);
CREATE TABLE chusan_user_character (
id INTEGER,
character_id INTEGER NOT NULL,
friendship_exp INTEGER NOT NULL,
is_valid BOOLEAN NOT NULL,
is_new_mark BOOLEAN NOT NULL,
level INTEGER NOT NULL,
param1 INTEGER NOT NULL,
param2 INTEGER NOT NULL,
play_count INTEGER NOT NULL,
ex_max_lv INTEGER NOT NULL,
assign_illust INTEGER NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_character_uq UNIQUE (
character_id,
user_id
)
ON CONFLICT REPLACE
);
CREATE TABLE chusan_user_charge (
id INTEGER,
charge_id INTEGER NOT NULL,
param1 INTEGER NOT NULL,
param2 INTEGER NOT NULL,
param_date DATETIME,
purchase_date DATETIME,
stock INTEGER NOT NULL,
valid_date DATETIME,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_charge_uq UNIQUE (
charge_id,
user_id
)
);
CREATE TABLE chusan_user_course (
id INTEGER,
class_id INTEGER NOT NULL,
course_id INTEGER NOT NULL,
event_id INTEGER NOT NULL,
is_all_justice BOOLEAN NOT NULL,
is_clear BOOLEAN NOT NULL,
is_full_combo BOOLEAN NOT NULL,
is_success BOOLEAN NOT NULL,
last_play_date DATETIME,
param1 INTEGER NOT NULL,
param2 INTEGER NOT NULL,
param3 INTEGER NOT NULL,
param4 INTEGER NOT NULL,
play_count INTEGER NOT NULL,
theory_count INTEGER,
score_max INTEGER NOT NULL,
score_rank INTEGER NOT NULL,
order_id INTEGER,
player_rating INTEGER,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_course_uq UNIQUE (
course_id,
user_id
)
);
CREATE TABLE chusan_user_duel (
id INTEGER,
duel_id INTEGER NOT NULL,
is_clear BOOLEAN NOT NULL,
last_play_date DATETIME,
param1 INTEGER NOT NULL,
param2 INTEGER NOT NULL,
param3 INTEGER NOT NULL,
param4 INTEGER NOT NULL,
point INTEGER NOT NULL,
progress INTEGER NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_duel_uq UNIQUE (
duel_id,
user_id
)
);
CREATE TABLE chusan_user_game_option (
id INTEGER,
bg_info INTEGER NOT NULL,
field_color INTEGER NOT NULL,
guide_sound INTEGER NOT NULL,
sound_effect INTEGER NOT NULL,
guide_line INTEGER NOT NULL,
speed INTEGER NOT NULL,
option_set INTEGER NOT NULL,
matching INTEGER NOT NULL,
judge_pos INTEGER NOT NULL,
rating INTEGER NOT NULL,
judge_critical INTEGER NOT NULL,
judge_justice INTEGER NOT NULL,
judge_attack INTEGER NOT NULL,
headphone INTEGER NOT NULL,
player_level INTEGER NOT NULL,
success_tap INTEGER NOT NULL,
success_ex_tap INTEGER NOT NULL,
success_slide_hold INTEGER NOT NULL,
success_air INTEGER NOT NULL,
success_flick INTEGER NOT NULL,
success_skill INTEGER NOT NULL,
success_tap_timbre INTEGER NOT NULL,
privacy INTEGER NOT NULL,
mirror_fumen INTEGER NOT NULL,
select_music_filter_lv INTEGER NOT NULL,
sort_music_filter_lv INTEGER NOT NULL,
sort_music_genre INTEGER NOT NULL,
category_detail INTEGER NOT NULL,
judge_timing_offset INTEGER NOT NULL,
play_timing_offset INTEGER NOT NULL,
field_wall_position INTEGER NOT NULL,
result_voice_short INTEGER NOT NULL,
notes_thickness INTEGER NOT NULL,
judge_append_se INTEGER NOT NULL,
track_skip INTEGER NOT NULL,
hard_judge INTEGER NOT NULL,
speed_120 INTEGER NOT NULL,
field_wall_position_120 INTEGER NOT NULL,
play_timing_offset_120 INTEGER NOT NULL,
judge_timing_offset_120 INTEGER NOT NULL,
ext1 INTEGER NOT NULL,
ext2 INTEGER NOT NULL,
ext3 INTEGER NOT NULL,
ext4 INTEGER NOT NULL,
ext5 INTEGER NOT NULL,
ext6 INTEGER NOT NULL,
ext7 INTEGER NOT NULL,
ext8 INTEGER NOT NULL,
ext9 INTEGER NOT NULL,
ext10 INTEGER NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
)
);
CREATE TABLE chusan_user_general_data (
id INTEGER,
property_key VARCHAR NOT NULL,
property_value VARCHAR NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_general_data_uq UNIQUE (
property_key,
user_id
)
ON CONFLICT REPLACE
);
CREATE TABLE chusan_user_item (
id INTEGER,
is_valid BOOLEAN NOT NULL,
item_id INTEGER NOT NULL,
item_kind INTEGER NOT NULL,
stock INTEGER NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_item_uq UNIQUE (
item_id,
item_kind,
user_id
)
);
CREATE TABLE chusan_user_map_area (
id INTEGER,
is_clear BOOLEAN NOT NULL,
is_locked BOOLEAN NOT NULL,
map_area_id BOOLEAN NOT NULL,
position INTEGER NOT NULL,
rate INTEGER NOT NULL,
status_count INTEGER NOT NULL,
remain_grid_count INTEGER NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_map_uq UNIQUE (
map_area_id,
user_id
)
);
CREATE TABLE chusan_user_music_detail (
id INTEGER,
full_chain INTEGER NOT NULL,
is_all_justice BOOLEAN NOT NULL,
is_full_combo BOOLEAN NOT NULL,
is_lock BOOLEAN NOT NULL,
is_success BOOLEAN NOT NULL,
level INTEGER NOT NULL,
max_chain INTEGER NOT NULL,
max_combo_count INTEGER NOT NULL,
miss_count INTEGER NOT NULL,
music_id INTEGER NOT NULL,
play_count INTEGER NOT NULL,
theory_count INTEGER,
ext1 INTEGER,
score_max INTEGER NOT NULL,
score_rank INTEGER NOT NULL,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
),
CONSTRAINT chusan_user_music_detail_uq UNIQUE (
level,
music_id,
user_id
)
);
CREATE TABLE chusan_user_playlog (
id INTEGER,
rom_version VARCHAR (255),
character_id INTEGER NOT NULL,
chara_illust_id INTEGER NOT NULL,
custom_id INTEGER NOT NULL,
common_id INTEGER NOT NULL,
event_id INTEGER NOT NULL,
full_chain_kind INTEGER NOT NULL,
is_all_justice BOOLEAN NOT NULL,
is_clear BOOLEAN NOT NULL,
is_continue BOOLEAN NOT NULL,
is_free_to_play BOOLEAN NOT NULL,
is_full_combo BOOLEAN NOT NULL,
is_new_record BOOLEAN NOT NULL,
judge_attack INTEGER NOT NULL,
judge_critical INTEGER NOT NULL,
judge_guilty INTEGER NOT NULL,
judge_justice INTEGER NOT NULL,
judge_heaven INTEGER NOT NULL,
level INTEGER NOT NULL,
max_chain INTEGER NOT NULL,
max_combo INTEGER NOT NULL,
music_id INTEGER NOT NULL,
order_id INTEGER NOT NULL,
place_id INTEGER NOT NULL,
place_name VARCHAR (255),
play_date DATETIME,
play_kind INTEGER NOT NULL,
played_custom1 INTEGER NOT NULL,
played_custom2 INTEGER NOT NULL,
played_custom3 INTEGER NOT NULL,
played_music_level1 INTEGER NOT NULL,
played_music_level2 INTEGER NOT NULL,
played_music_level3 INTEGER NOT NULL,
played_user_id1 INTEGER NOT NULL,
played_user_id2 INTEGER NOT NULL,
played_user_id3 INTEGER NOT NULL,
played_user_name1 VARCHAR (255),
played_user_name2 VARCHAR (255),
played_user_name3 VARCHAR (255),
player_rating INTEGER NOT NULL,
rank INTEGER NOT NULL,
rate_air INTEGER NOT NULL,
rate_flick INTEGER NOT NULL,
rate_hold INTEGER NOT NULL,
rate_slide INTEGER NOT NULL,
rate_tap INTEGER NOT NULL,
score INTEGER NOT NULL,
skill_effect INTEGER NOT NULL,
skill_id INTEGER NOT NULL,
skill_level INTEGER NOT NULL,
sort_number INTEGER NOT NULL,
track INTEGER NOT NULL,
user_play_date DATETIME,
user_id BIGINT REFERENCES chusan_user_data (id) ON DELETE CASCADE,
PRIMARY KEY (
id
)
);

View File

@@ -0,0 +1,141 @@
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (0, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',0, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (1, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',11, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',0, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',6, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10006, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10007, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10008, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10009, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10010, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10011, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10012, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10013, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10014, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10015, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10016, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10017, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10018, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10019, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10020, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10021, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10022, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10023, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10024, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10025, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10026, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10027, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10028, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10029, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10030, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10031, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10032, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10033, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10034, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10035, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10036, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10037, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10038, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10039, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10040, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10041, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10042, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10043, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',9, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10044, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10045, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',10, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10046, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10047, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',12, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10048, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10049, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10050, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10051, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10052, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10053, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10054, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',5, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10055, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',4, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10056, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',11, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10080, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10081, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10082, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10083, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10100, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10101, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10102, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10103, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10104, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10105, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10106, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10107, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10108, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10109, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10110, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10111, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',9, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10112, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10113, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',10, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10114, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10115, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',12, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10116, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10117, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',5, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10118, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',4, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10119, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10150, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10151, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10170, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10171, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10172, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10173, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10174, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10175, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10176, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10177, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10178, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10200, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10201, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10202, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10203, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10204, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10205, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10206, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10207, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10208, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10209, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',9, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10210, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10211, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',10, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10212, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10213, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',12, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10214, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10215, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',5, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10216, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',4, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10217, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',11, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10218, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10250, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10251, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10252, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10253, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10254, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10255, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10256, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10257, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10258, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',11, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10300, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10301, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10302, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10303, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10304, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10305, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10306, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10307, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10308, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10309, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10310, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10311, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',9, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10312, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10313, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',10, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10314, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10315, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',12, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10316, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10317, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10318, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10319, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10320, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',5, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (10321, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',11, true);

View File

@@ -0,0 +1,132 @@
INSERT INTO chusan_game_charge (
start_date,
sale_start_date,
sale_price,
sale_end_date,
price,
order_id,
end_date,
charge_id,
id
)
VALUES (
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
0,
'2029-01-01 00:00:00.000000',
2310,
1
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
1,
'2029-01-01 00:00:00.000000',
2230,
2
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
2,
'2029-01-01 00:00:00.000000',
2220,
3
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
3,
'2029-01-01 00:00:00.000000',
2210,
4
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
4,
'2029-01-01 00:00:00.000000',
2060,
5
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
5,
'2029-01-01 00:00:00.000000',
2050,
6
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
6,
'2029-01-01 00:00:00.000000',
2040,
7
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
7,
'2029-01-01 00:00:00.000000',
2030,
8
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
8,
'2029-01-01 00:00:00.000000',
2020,
9
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
9,
'2029-01-01 00:00:00.000000',
2010,
10
),
(
'2019-01-01 00:00:00.000000',
'2019-01-01 00:00:00.000000',
1,
'2029-01-01 00:00:00.000000',
1,
10,
'2029-01-01 00:00:00.000000',
2410,
11
);