change table name to plays

This commit is contained in:
filifa 2024-07-26 20:03:39 -05:00
parent 6bf4f507f8
commit fc71f4cd9d
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ json ->> 'awayTeam',
json ->> 'awayScore',
json ->> 'homeTeam',
json ->> 'homeScore'
from playinfo
from plays
where
json ->> 'description' is not null and
json ->> 'isScoringPlay' = 1 and

View File

@ -1,10 +1,10 @@
create table if not exists playinfo (
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_playinfo
on playinfo(posted)
create index if not exists nonposted_plays
on plays(posted)
where posted = 0;
create table if not exists highlights (

View File

@ -36,4 +36,4 @@ then
fi
jqFilter='{gamePk} + (.gameData.teams | {awayTeam: .away.teamName, homeTeam: .home.teamName}) + (.liveData.plays.allPlays[] | (.result + (.about | {atBatIndex, halfInning, inning, isComplete, isScoringPlay, hasReview})))'
mlblive subscribe -g $gamePk | jq -Sc --unbuffered "$jqFilter" | sed -u 's/$/0/' | writedb.sh -d $db -t playinfo -c ''
mlblive subscribe -g $gamePk | jq -Sc --unbuffered "$jqFilter" | sed -u 's/$/0/' | writedb.sh -d $db -t plays -c ''