update posted

This commit is contained in:
filifa 2024-07-26 21:40:53 -05:00
parent 87f2ad02dc
commit 8c5292f9c8
1 changed files with 3 additions and 1 deletions

View File

@ -15,5 +15,7 @@ json ->> 'description' is not null and
json ->> 'isScoringPlay' = 1 and
posted = 0;
-- update posted here
update plays
set posted = 1
where posted = 0;
commit;