combine schemas
This commit is contained in:
parent
2c11488dc2
commit
e5ff87730e
|
@ -1,6 +0,0 @@
|
|||
create table if not exists games (
|
||||
gamePk integer,
|
||||
teamId text,
|
||||
state text,
|
||||
unique (teamId, gamePk) on conflict replace
|
||||
);
|
|
@ -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
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue