diff --git a/src/main/resources/db/migration/mysql/V103__update_chusan_game_charge.sql b/src/main/resources/db/migration/mysql/V103__update_chusan_game_charge.sql new file mode 100644 index 00000000..1c4a4786 --- /dev/null +++ b/src/main/resources/db/migration/mysql/V103__update_chusan_game_charge.sql @@ -0,0 +1,7 @@ +-- chusan_game_charge +TRUNCATE TABLE chusan_game_charge; +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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', 2020); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 1, '2029-01-01 00:00:00.000000', 2040); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 2, '2029-01-01 00:00:00.000000', 2060); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 3, '2029-01-01 00:00:00.000000', 2070); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 4, '2029-01-01 00:00:00.000000', 2080); diff --git a/src/main/resources/db/migration/sqlite/V103__update_chusan_game_charge.sql b/src/main/resources/db/migration/sqlite/V103__update_chusan_game_charge.sql new file mode 100644 index 00000000..4033260f --- /dev/null +++ b/src/main/resources/db/migration/sqlite/V103__update_chusan_game_charge.sql @@ -0,0 +1,7 @@ +-- chusan_game_charge +DELETE FROM chusan_game_charge; +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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', 2020); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 1, '2029-01-01 00:00:00.000000', 2040); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 2, '2029-01-01 00:00:00.000000', 2060); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 3, '2029-01-01 00:00:00.000000', 2070); +INSERT INTO chusan_game_charge (start_date, sale_start_date, sale_price, sale_end_date, price, order_id, end_date, charge_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, 4, '2029-01-01 00:00:00.000000', 2080);