9 lines
288 B
SQL
9 lines
288 B
SQL
CREATE TABLE "opendock.apt" (
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"release" integer,
|
|
"open_dock_apt_id" text NOT NULL,
|
|
"appointment" jsonb DEFAULT '[]'::jsonb,
|
|
"created_at" timestamp DEFAULT now(),
|
|
CONSTRAINT "opendock.apt_release_unique" UNIQUE("release")
|
|
);
|