wip
This commit is contained in:
12
prisma/migrations/20250819161859_/migration.sql
Normal file
12
prisma/migrations/20250819161859_/migration.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the column `text` on the `Candidate` table. All the data in the column will be lost.
|
||||
- Added the required column `justification` to the `Candidate` table without a default value. This is not possible if the table is not empty.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "public"."Candidate" DROP COLUMN "text",
|
||||
ADD COLUMN "justification" TEXT NOT NULL,
|
||||
ALTER COLUMN "hobbies" DROP NOT NULL,
|
||||
ALTER COLUMN "image" DROP NOT NULL;
|
||||
9
prisma/migrations/20250822104249_init/migration.sql
Normal file
9
prisma/migrations/20250822104249_init/migration.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the column `image` on the `Candidate` table. All the data in the column will be lost.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "public"."Candidate" DROP COLUMN "image",
|
||||
ADD COLUMN "profileImage" TEXT;
|
||||
Reference in New Issue
Block a user