From d88986cf0d0ac1ebcb2e6bf92867dd08e815c4f8 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 14 Dec 2023 16:51:57 -0500 Subject: [PATCH] fix(moderation): fixed incorrect mysql syntax --- moderation/moderation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moderation/moderation.py b/moderation/moderation.py index b1edb91..6e46592 100644 --- a/moderation/moderation.py +++ b/moderation/moderation.py @@ -173,7 +173,7 @@ class Moderation(commands.Cog): resolved_by LONGTEXT, resolve_reason LONGTEXT, expired BOOL NOT NULL, - changes JSON NOT NULL, + changes JSON NOT NULL ) """ cursor.execute(query)