feat(opendock): scheduing updates
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m39s
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m39s
ref #23
This commit is contained in:
14
migrations/0054_talented_nocturne.sql
Normal file
14
migrations/0054_talented_nocturne.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
CREATE TYPE "public"."load_type" AS ENUM('drop', 'live');--> statement-breakpoint
|
||||
CREATE TABLE "opendock_article_setup" (
|
||||
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
||||
"av" integer NOT NULL,
|
||||
"description" text NOT NULL,
|
||||
"customer" text NOT NULL,
|
||||
"load_type" "load_type" DEFAULT 'drop' NOT NULL,
|
||||
"dock" text NOT NULL,
|
||||
"upd_date" timestamp DEFAULT now() NOT NULL,
|
||||
"upd_user" text DEFAULT 'lst-system' NOT NULL,
|
||||
"created_at" timestamp DEFAULT now() NOT NULL,
|
||||
"add_user" text DEFAULT 'lst-system' NOT NULL,
|
||||
CONSTRAINT "opendock_article_setup_av_unique" UNIQUE("av")
|
||||
);
|
||||
Reference in New Issue
Block a user