bf9e827f85
Deploy backend, frontend, PostgreSQL, and Redis on Kubernetes with optional Ingress/TLS, SQL migration hooks, and public registry exposure at repo.3fase.ir. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
292 B
SQL
7 lines
292 B
SQL
-- Add DOCKED lifecycle status and dock metadata (run if TypeORM sync is disabled)
|
|
ALTER TYPE applications_lifecyclestatus_enum ADD VALUE IF NOT EXISTS 'docked';
|
|
|
|
ALTER TABLE applications
|
|
ADD COLUMN IF NOT EXISTS "dockedAt" TIMESTAMPTZ,
|
|
ADD COLUMN IF NOT EXISTS "dockSnapshotId" VARCHAR;
|