Add service credential visibility.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
keyhan
2026-05-19 00:33:22 +03:30
parent 41a276d16d
commit 18c6abd0e8
5 changed files with 169 additions and 5 deletions
@@ -0,0 +1,6 @@
-- 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;