diff --git a/prisma/migrations/20250404144405_/migration.sql b/prisma/migrations/20250404144405_/migration.sql new file mode 100644 index 0000000..d0d5037 --- /dev/null +++ b/prisma/migrations/20250404144405_/migration.sql @@ -0,0 +1,8 @@ +/* + Warnings: + + - You are about to drop the column `custom` on the `links` table. All the data in the column will be lost. + +*/ +-- AlterTable +ALTER TABLE `links` DROP COLUMN `custom`; diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 2930090..f909414 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -275,7 +275,6 @@ model links { url String? @db.VarChar(255) directUrl String? @db.VarChar(255) provider String? @db.VarChar(255) - custom String? @db.VarChar(255) downloadId Int url2 String? @db.VarChar(255) download downloads? @relation(fields: [downloadId], references: [id], map: "links_ibfk_1")