mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-04-19 10:51:20 +00:00
11 lines
307 B
SQL
11 lines
307 B
SQL
/*
|
|
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";
|