-
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.
This value in the schema was mistakenly not removed with other changes to the schema that happened.
- Loading branch information
1 parent
9faacc3
commit 9207ec8
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
prisma/migrations/20240412025809_remove_method_id_from_set/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,8 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the column `methodId` on the `Set` table. All the data in the column will be lost. | ||
*/ | ||
-- AlterTable | ||
ALTER TABLE "Set" DROP COLUMN "methodId"; |
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 |
---|---|---|
|
@@ -80,7 +80,6 @@ model Set { | |
visualizationId String | ||
cases Case[] | ||
methods Method[] | ||
methodId String? | ||
} | ||
|
||
model Case { | ||
|