[generic] Fix MariaDB migration

pull/1/head
Dom Eori 2022-03-17 15:32:32 +09:00
parent 0994322d84
commit 5d2b59a3e3
6 changed files with 154 additions and 147 deletions

View File

@ -18,13 +18,13 @@ Read [game specific notes](docs/game_specific_notes.md) for more information.
### Usage:
Requirements:
* Java 11 or above
* Optional: MariaDB or MySQL (<8.0)
* Optional: MariaDB (preferred) or MySQL (<8.0)
Run `java -jar aqua.jar` or use the `start.bat` if you are using windows.
By default, Aqua will use sqlite and save user data in data/db.sqlite.
If you want to MySQL (or MariaDB), edit configuration then it will auto create the table and import some initial data.
If you want to MariaDB (or MySQL <8.0), edit configuration then it will auto create the table and import some initial data.
Please go to the database migration tool's website to check if your database version is being supported https://flywaydb.org/documentation/database/mariadb

View File

@ -50,11 +50,11 @@ spring.datasource.driver-class-name=org.sqlite.JDBC
spring.datasource.url=jdbc:sqlite:data/db.sqlite
spring.jpa.properties.hibernate.dialect=org.sqlite.hibernate.dialect.SQLiteDialect
########## For Mysql ##########
########## For MariaDB ##########
#spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
#spring.datasource.username=
#spring.datasource.password=
#spring.datasource.url=jdbc:mariadb://localhost:3306/?useSSL=false
#spring.datasource.url=jdbc:mariadb://localhost:3306/insert_db_name_here?useSSL=false
#spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MariaDB10Dialect
#spring.datasource.hikari.maximum-pool-size=10

View File

@ -79,6 +79,13 @@
<artifactId>flyway-core</artifactId>
<version>8.3.0</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
<version>8.3.0</version>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>

View File

@ -268,8 +268,8 @@ CREATE TABLE chusan_user_game_option (
CREATE TABLE chusan_user_general_data (
id BIGINT auto_increment PRIMARY KEY,
property_key VARCHAR NOT NULL,
property_value VARCHAR NOT NULL,
property_key VARCHAR (255) NOT NULL,
property_value TEXT NOT NULL,
user_id BIGINT,
constraint FKm4k7mAMRbn6TRj3N
foreign key (user_id) references chusan_user_data (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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'0');
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, b'0');
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, b'0');
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, b'0');
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, b'0');
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, b'1');
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, b'0');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'0');
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, b'1');
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, b'1');
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, b'1');
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, b'1');

View File

@ -1,141 +0,0 @@
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'0');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');
INSERT INTO `chuni_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, b'1');