Files
mlbstats-mastodon-scripts/schema.sql

33 lines
758 B
MySQL
Raw Normal View History

2024-08-03 17:32:21 -05:00
create table if not exists plays (
2024-07-24 21:17:36 -05:00
"json" text unique on conflict ignore,
"posted" integer check ("posted" in (0, 1))
);
2024-08-03 17:32:21 -05: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-24 21:17:36 -05:00
where posted = 0;
2024-08-03 15:39:24 -05:00
create table if not exists games (
gamePk integer,
2024-08-04 14:54:43 -05:00
json text,
posted integer,
2024-08-05 22:44:18 -05:00
unique (gamePk) on conflict ignore
2024-08-03 15:39:24 -05:00
);
create trigger if not exists delete_old_states
before insert on games
begin
delete from games
where gamePk = new.gamePk and
2024-08-04 16:00:48 -05:00
json ->> 'status' ->> 'detailedState' != new.json ->> 'status' ->> 'detailedState';
end;