Dokumentenvorlagen im Ausgangsbeleg-Editor ergänzen
All checks were successful
Build and Push Docker Images / build-frontend (push) Successful in 1m22s
Build and Push Docker Images / build-website (push) Successful in 23s
Build and Push Docker Images / build-central-services-api (push) Successful in 22s
Build and Push Docker Images / build-backend (push) Successful in 43s
Build and Push Docker Images / build-central-services-admin (push) Successful in 21s
Build and Push Docker Images / build-docs (push) Successful in 21s
All checks were successful
Build and Push Docker Images / build-frontend (push) Successful in 1m22s
Build and Push Docker Images / build-website (push) Successful in 23s
Build and Push Docker Images / build-central-services-api (push) Successful in 22s
Build and Push Docker Images / build-backend (push) Successful in 43s
Build and Push Docker Images / build-central-services-admin (push) Successful in 21s
Build and Push Docker Images / build-docs (push) Successful in 21s
This commit is contained in:
16
backend/db/migrations/0065_document_templates.sql
Normal file
16
backend/db/migrations/0065_document_templates.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
CREATE TABLE IF NOT EXISTS "documenttemplates" (
|
||||
"id" bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
|
||||
"created_at" timestamptz NOT NULL DEFAULT now(),
|
||||
"tenant" bigint NOT NULL REFERENCES "tenants"("id"),
|
||||
"name" text NOT NULL,
|
||||
"document_type" text NOT NULL,
|
||||
"template_data" jsonb NOT NULL DEFAULT '{}'::jsonb,
|
||||
"default" boolean NOT NULL DEFAULT false,
|
||||
"archived" boolean NOT NULL DEFAULT false,
|
||||
"updated_at" timestamptz,
|
||||
"updated_by" uuid REFERENCES "auth_users"("id"),
|
||||
"created_by" uuid REFERENCES "auth_users"("id")
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS "documenttemplates_tenant_type_idx"
|
||||
ON "documenttemplates" ("tenant", "document_type");
|
||||
Reference in New Issue
Block a user