[chuni] Add auto version matching

This commit is contained in:
samnyan
2020-12-14 17:18:21 +08:00
parent b3a8e80399
commit aa2e8cdea4
15 changed files with 256 additions and 21 deletions

View File

@@ -0,0 +1,8 @@
create table sega_game_version
(
uuid varchar(255)
primary key,
rom_version varchar(255) not null,
data_version varchar(255) not null,
last_time DATETIME not null
);

View File

@@ -0,0 +1,8 @@
create table sega_game_version
(
uuid varchar
primary key,
rom_version varchar not null,
data_version varchar not null,
last_time DATETIME not null
);