-
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.
chore(app/prisma/solutions): add publication & usage boolean, update …
…Status with GRADING & WITHDRAWN (#33)
- Loading branch information
Showing
10 changed files
with
172 additions
and
149 deletions.
There are no files selected for viewing
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
12 changes: 12 additions & 0 deletions
12
prisma/migrations/20240319141450_add_consent_update_status/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,12 @@ | ||
/* | ||
Warnings: | ||
- The values [UNDER_REVIEW] on the enum `AdminInfo_status` will be removed. If these variants are still used in the database, this will fail. | ||
*/ | ||
-- AlterTable | ||
ALTER TABLE `admininfo` MODIFY `status` ENUM('OPEN', 'SUBMITTED', 'IN_PROGRESS', 'GRADING', 'WITHDRAWN', 'COMPLETED') NULL; | ||
|
||
-- AlterTable | ||
ALTER TABLE `proposalapplication` ADD COLUMN `allowPublication` BOOLEAN NULL, | ||
ADD COLUMN `allowUsage` BOOLEAN 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
Binary file not shown.
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
Oops, something went wrong.