From 8c5292f9c8f28bf81134af256e4dfd6b750a53a2 Mon Sep 17 00:00:00 2001 From: filifa Date: Fri, 26 Jul 2024 21:40:53 -0500 Subject: [PATCH] update posted --- postplays.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/postplays.sql b/postplays.sql index 42fe877..7222670 100644 --- a/postplays.sql +++ b/postplays.sql @@ -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;