feat(command log): added new log for all commands used

This commit is contained in:
2025-06-11 20:46:21 -05:00
parent 60690d2df4
commit aadf255e34
4 changed files with 2198 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE "commandLog" (
"commandLog_id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"commandUsed" text NOT NULL,
"bodySent" jsonb DEFAULT '[]'::jsonb,
"reasonUsed" text,
"add_Date" timestamp DEFAULT now()
);