mirror of
https://github.com/Finsys/dockhand.git
synced 2026-06-17 19:09:33 +03:00
13 lines
391 B
SQL
13 lines
391 B
SQL
CREATE TABLE "template_sources" (
|
|
"id" serial PRIMARY KEY NOT NULL,
|
|
"source_id" text NOT NULL,
|
|
"name" text NOT NULL,
|
|
"url" text NOT NULL,
|
|
"enabled" boolean DEFAULT true,
|
|
"builtin" boolean DEFAULT false,
|
|
"sort_order" integer DEFAULT 0,
|
|
"created_at" timestamp DEFAULT now(),
|
|
"updated_at" timestamp DEFAULT now(),
|
|
CONSTRAINT "template_sources_source_id_unique" UNIQUE("source_id")
|
|
);
|