mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Drop custom url column
This commit is contained in:
parent
13a7f99a5d
commit
d3581eaeef
2 changed files with 8 additions and 1 deletions
8
prisma/migrations/20250404144405_/migration.sql
Normal file
8
prisma/migrations/20250404144405_/migration.sql
Normal file
|
|
@ -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`;
|
||||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue