25 lines
548 B
SQL
25 lines
548 B
SQL
create table if not exists plays (
|
|
"json" text unique on conflict ignore,
|
|
"posted" integer check ("posted" in (0, 1))
|
|
);
|
|
|
|
create index if not exists nonposted_plays
|
|
on plays(posted)
|
|
where posted = 0;
|
|
|
|
create table if not exists highlights (
|
|
"json" text unique on conflict ignore,
|
|
"posted" integer check ("posted" in (0, 1))
|
|
);
|
|
|
|
create index if not exists nonposted_highlights
|
|
on highlights(posted)
|
|
where posted = 0;
|
|
|
|
create table if not exists games (
|
|
gamePk integer,
|
|
teamId text,
|
|
state text,
|
|
unique (teamId, gamePk) on conflict replace
|
|
);
|