mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-05-14 10:15:52 +00:00
11 lines
307 B
MySQL
11 lines
307 B
MySQL
![]() |
/*
|
||
|
Warnings:
|
||
|
|
||
|
- You are about to drop the column `image` on the `User` table. All the data in the column will be lost.
|
||
|
- You are about to drop the column `name` on the `User` table. All the data in the column will be lost.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE "User" DROP COLUMN "image",
|
||
|
DROP COLUMN "name";
|