project-knedita/prisma/migrations/20230716143549_alter_profile_image_field_name/migration.sql

10 lines
235 B
MySQL
Raw Permalink Normal View History

/*
Warnings:
- You are about to drop the column `profilePicture` on the `User` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "User" DROP COLUMN "profilePicture",
ADD COLUMN "profileImage" TEXT;