All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 3m1s
the ui elements would over lap and cause visual issues with the scanning and seeing the old labels closes #25
15 lines
464 B
SQL
15 lines
464 B
SQL
CREATE TABLE "dock_door_scanners" (
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"ip" text NOT NULL,
|
|
"name" text,
|
|
"dock_id" text,
|
|
"dock_name" text NOT NULL,
|
|
"active" boolean DEFAULT true,
|
|
"current_loading_order" text DEFAULT '',
|
|
"add_date" timestamp DEFAULT now(),
|
|
"add_user" text DEFAULT 'lst-system',
|
|
"upd_date" timestamp DEFAULT now(),
|
|
"upd_user" text DEFAULT 'lst-system',
|
|
CONSTRAINT "dock_door_scanners_name_unique" UNIQUE("name")
|
|
);
|