mlblive-mastodon-scripts/schema.sql

35 lines
880 B
MySQL
Raw Permalink Normal View History

2024-08-03 22:32:21 +00:00
create table if not exists plays (
2024-07-25 02:17:36 +00:00
"json" text unique on conflict ignore,
"posted" integer check ("posted" in (0, 1))
);
2024-08-03 22:32:21 +00:00
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)
2024-07-25 02:17:36 +00:00
where posted = 0;
2024-08-03 20:39:24 +00:00
create table if not exists games (
2024-08-09 03:17:11 +00:00
"json" text unique on conflict ignore,
2024-08-10 20:11:46 +00:00
"posted" integer check ("posted" in (0, 1))
2024-08-03 20:39:24 +00:00
);
2024-08-09 03:17:11 +00:00
create index if not exists nonposted_games
on games(posted)
where posted = 0;
2024-08-11 06:17:13 +00:00
create trigger if not exists delete_old_states
before insert on games
begin
delete from games
where json ->> 'gamePk' = new.json ->> 'gamePk' and
json ->> 'status' ->> 'detailedState' != new.json ->> 'status' ->> 'detailedState';
end;