Skip to content

Commit

Permalink
column naming fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Feb 8, 2024
1 parent 12c8d7b commit 35ad503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/pool/pool.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ model PrismaPool {
vaultVersion Int @default(2)
typeData Json @default("{}") @map("type_data")
typeData Json @default("{}")
tokens PrismaPoolToken[]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-- Remove old tables
ALTER TABLE "PrismaPool" RENAME COLUMN "staticTypeData" TO type_data;
ALTER TABLE "PrismaPool" RENAME COLUMN "staticTypeData" TO "typeData";

0 comments on commit 35ad503

Please sign in to comment.