mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
10 lines
235 B
MySQL
10 lines
235 B
MySQL
|
/*
|
||
|
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;
|