Skip to content

Commit

Permalink
hotfix: api key encrypted migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
arielweinberger committed May 15, 2024
1 parent 16b3b36 commit 40f7b5b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "ProviderApiKey" ADD COLUMN "encryptionTag" TEXT;
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
Warnings:
- Made the column `encryptionTag` on table `ProviderApiKey` required. This step will fail if there are existing NULL values in that column.
*/
-- AlterTable
ALTER TABLE "ProviderApiKey" ALTER COLUMN "encryptionTag" SET NOT NULL;

0 comments on commit 40f7b5b

Please sign in to comment.