-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DB fix attempt 3 - optional everything in Rating
- Loading branch information
1 parent
2b6d56d
commit 5a32c5d
Showing
2 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
prisma/migrations/20241127035839_stage1_optional_everything_in_rating/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- AlterTable | ||
ALTER TABLE "Rating" ALTER COLUMN "courseName" DROP NOT NULL, | ||
ALTER COLUMN "courseNumber" DROP NOT NULL, | ||
ALTER COLUMN "courseSubject" DROP NOT NULL, | ||
ALTER COLUMN "profBannerId" DROP NOT NULL, | ||
ALTER COLUMN "profDisplayName" DROP NOT NULL, | ||
ALTER COLUMN "termTaken" DROP NOT NULL, | ||
ALTER COLUMN "yearTaken" DROP NOT NULL, | ||
ALTER COLUMN "profUid" DROP NOT NULL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters