Skip to content

Commit

Permalink
fix: added the empty string in user_org_delete_activity table (#766)
Browse files Browse the repository at this point in the history
Signed-off-by: KulkarniShashank <shashank.kulkarni@ayanworks.com>
  • Loading branch information
KulkarniShashank authored Jun 11, 2024
1 parent d852bfa commit 5f82ac8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "user_org_delete_activity" ALTER COLUMN "userEmail" SET DEFAULT '';
2 changes: 1 addition & 1 deletion libs/prisma-service/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ model ledgerConfig {

model user_org_delete_activity {
id String @id @default(uuid()) @db.Uuid
userEmail String
userEmail String @default("")
userId String @db.Uuid
orgId String @db.Uuid
recordType RecordType
Expand Down

0 comments on commit 5f82ac8

Please sign in to comment.