10 lines
236 B
SQL
10 lines
236 B
SQL
/*
|
|
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;
|