Skip to content

Commit

Permalink
fix(db): change schema
Browse files Browse the repository at this point in the history
  • Loading branch information
alonp99 committed Sep 19, 2024
1 parent 7af1a88 commit e640e47
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
Warnings:
- Made the column `crossEnvKey` on table `UiDefinition` required. This step will fail if there are existing NULL values in that column.
- Made the column `crossEnvKey` on table `WorkflowDefinition` required. This step will fail if there are existing NULL values in that column.
*/
-- AlterTable
ALTER TABLE "UiDefinition" ALTER COLUMN "crossEnvKey" SET NOT NULL;

-- AlterTable
ALTER TABLE "WorkflowDefinition" ALTER COLUMN "crossEnvKey" SET NOT NULL;

0 comments on commit e640e47

Please sign in to comment.