7 lines
127 B
MySQL
7 lines
127 B
MySQL
|
create table if not exists games (
|
||
|
gamePk integer,
|
||
|
teamId text,
|
||
|
state text,
|
||
|
unique (teamId, gamePk) on conflict replace
|
||
|
);
|