Files
lst_v3/migrations/0041_bright_tempest.sql
Blake Matthes 30ffd843c7
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m24s
feat(mobile): update notifications and more error handling added
2026-04-30 17:02:21 -05:00

11 lines
267 B
SQL

CREATE TABLE "scan_log" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"scanner_id" text,
"message" text NOT NULL,
"prompt" text,
"command_description" text,
"status" text,
"lines" jsonb DEFAULT '[]'::jsonb,
"add_Date" timestamp DEFAULT now()
);