add a column for posting begin/end of game

This commit is contained in:
filifa 2024-08-04 00:13:13 -05:00
parent 5015924d19
commit a8f4bc5e30
2 changed files with 12 additions and 2 deletions

View File

@ -30,6 +30,6 @@ then
fi
jqFilter='.dates[].games[] | "\(.gamePk),\(.status.detailedState)"'
fmt="OFS=\",\"; print \$1, \"$team\", \$2"
fmt="OFS=\",\"; print \$1, \"$team\", \$2, 0"
save="\"sqlite3 $db '.import --csv /dev/stdin games'\""
mlblive schedule -t $team | jq -r "$jqFilter" | awk -F , "{$fmt | $save; close($save)}"

View File

@ -20,5 +20,15 @@ create table if not exists games (
gamePk integer,
teamId text,
state text,
unique (teamId, gamePk) on conflict replace
posted integer,
unique (teamId, gamePk) on conflict ignore
);
create trigger if not exists delete_old_states
before insert on games
begin
delete from games
where gamePk = new.gamePk and
teamId = new.teamId and
state != new.state;
end;