Skip to content

Commit

Permalink
Remove methodId from set schema
Browse files Browse the repository at this point in the history
This value in the schema was mistakenly not removed with other
changes to the schema that happened.
  • Loading branch information
nsilvestri committed Apr 12, 2024
1 parent 9faacc3 commit 9207ec8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
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";
1 change: 0 additions & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ model Set {
visualizationId String
cases Case[]
methods Method[]
methodId String?
}

model Case {
Expand Down

0 comments on commit 9207ec8

Please sign in to comment.