ci: attempt to fix Deployment

This commit is contained in:
2026-04-08 04:41:53 +00:00
parent b9c2ddb38b
commit f3a8a7e25a
7 changed files with 82 additions and 36 deletions
@@ -1,2 +1,7 @@
-- AlterTable
ALTER TABLE "Opportunity" ADD COLUMN "cwDateEntered" TIMESTAMP(3);
-- AlterTable (idempotent)
DO $$
BEGIN
IF NOT EXISTS (SELECT 1 FROM information_schema.columns WHERE table_name = 'Opportunity' AND column_name = 'cwDateEntered') THEN
ALTER TABLE "Opportunity" ADD COLUMN "cwDateEntered" TIMESTAMP(3);
END IF;
END $$;