8 lines
226 B
SQL
8 lines
226 B
SQL
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()
|
|
);
|