13 lines
462 B
SQL
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;
|