diff --git a/docs/game_specific_notes.md b/docs/game_specific_notes.md index 14e1c882..54b68ac0 100644 --- a/docs/game_specific_notes.md +++ b/docs/game_specific_notes.md @@ -7,7 +7,7 @@ This document is for detailed game specific notes, if any. | Name | Game ID | Latest supported version | Latest supported option | Actively supported | Requires patch | | --- | --- | --- | --- | --- | --- | -|Chunithm (Chusan)|SDHD |New Plus |- |Yes |Yes | +|Chunithm (Chusan)|SDHD |New Plus |A001 |Yes |Yes | |Chunithm |SDBT |Paradise Lost |A032 |Yes |Yes (Paradise) | |Maimai DX |SDEZ |Universe Plus |E041 |Yes |Yes | |O.N.G.E.K.I |SDDT |Bright memory |A052 |Yes |Yes | diff --git a/src/main/resources/db/migration/mysql/V115__add_chusan_a001_data.sql b/src/main/resources/db/migration/mysql/V115__add_chusan_a001_data.sql new file mode 100644 index 00000000..379305ee --- /dev/null +++ b/src/main/resources/db/migration/mysql/V115__add_chusan_a001_data.sql @@ -0,0 +1 @@ +INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (13, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',6, b'1'); diff --git a/src/main/resources/db/migration/sqlite/V115__add_chusan_a001_data.sql b/src/main/resources/db/migration/sqlite/V115__add_chusan_a001_data.sql new file mode 100644 index 00000000..65133a92 --- /dev/null +++ b/src/main/resources/db/migration/sqlite/V115__add_chusan_a001_data.sql @@ -0,0 +1 @@ +INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (13, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',6, true);