mlblive-mastodon-scripts/schema.sql

9 lines
200 B
MySQL
Raw Normal View History

2024-08-01 01:04:31 +00:00
create table if not exists mlbdata (
2024-07-25 02:17:36 +00:00
"json" text unique on conflict ignore,
"posted" integer check ("posted" in (0, 1))
);
2024-08-01 01:04:31 +00:00
create index if not exists nonposted
on mlbdata(posted)
2024-07-25 02:17:36 +00:00
where posted = 0;