Files
IISA/prisma/migrations/20250819161859_/migration.sql
2025-08-24 17:25:11 +03:00

13 lines
462 B
SQL

/*
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;