Skip to content

Commit

Permalink
chore(prisma): add comment 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 8245721 commit 01c7bcb
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 `comment` TEXT NULL;
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ model AdminInfo {
submissionDate DateTime?
grade Float?
olatGradeDate DateTime?
comment String? @db.Text
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
Expand Down

0 comments on commit 01c7bcb

Please sign in to comment.