amati/prisma/migrations/20240214052727_move_photo_profile_into_table/migration.sql
2024-02-14 12:46:14 +07:00

15 lines
368 B
SQL

/*
Warnings:
- You are about to drop the `UserPhotoProfiles` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropForeignKey
ALTER TABLE `UserPhotoProfiles` DROP FOREIGN KEY `UserPhotoProfiles_userId_fkey`;
-- AlterTable
ALTER TABLE `User` ADD COLUMN `photoProfile` VARCHAR(191) NULL;
-- DropTable
DROP TABLE `UserPhotoProfiles`;