recator placement of code

This commit is contained in:
2026-02-17 11:46:57 -06:00
parent 31f8c368d9
commit 23c000fa7f
77 changed files with 4528 additions and 2697 deletions

View File

@@ -0,0 +1,8 @@
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")
);