Skip to content

Commit

Permalink
chore(prisma): add capturedOnZora column into AdminInfo table
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Weber committed Mar 21, 2024
1 parent b4c1a82 commit 4a767ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE `admininfo` ADD COLUMN `capturedOnZora` BOOLEAN NULL;
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ model AdminInfo {
grade Float?
olatGradeDate DateTime?
comment String? @db.Text
capturedOnZora Boolean?
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
Expand Down

0 comments on commit 4a767ce

Please sign in to comment.