Skip to content

Commit

Permalink
fix: removed iconName from Partner schema
Browse files Browse the repository at this point in the history
  • Loading branch information
fagundesjg committed May 15, 2024
1 parent f536df3 commit d6b0583
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 8 additions & 0 deletions prisma/migrations/20240515003750_/migration.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
Warnings:
- You are about to drop the column `iconName` on the `partners` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "partners" DROP COLUMN "iconName";
1 change: 0 additions & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ model Partners {
id String @id @default(uuid())
name String @unique
link String
iconName String @default(value: "Handshake")
createdAt String @map("created_at") @db.VarChar(32)
updatedAt String? @map("updated_at") @db.VarChar(32)
Expand Down

0 comments on commit d6b0583

Please sign in to comment.