combine schemas

This commit is contained in:
filifa 2024-08-03 15:39:24 -05:00
parent 2c11488dc2
commit e5ff87730e
2 changed files with 7 additions and 6 deletions

View File

@ -1,6 +0,0 @@
create table if not exists games (
gamePk integer,
teamId text,
state text,
unique (teamId, gamePk) on conflict replace
);

View File

@ -6,3 +6,10 @@ create table if not exists mlbdata (
create index if not exists nonposted
on mlbdata(posted)
where posted = 0;
create table if not exists games (
gamePk integer,
teamId text,
state text,
unique (teamId, gamePk) on conflict replace
);