10 lines
213 B
MySQL
10 lines
213 B
MySQL
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- You are about to drop the column `pippo` on the `Post` table. All the data in the column will be lost.
|
||
|
|
||
|
*/
|
||
|
-- AlterTable
|
||
|
ALTER TABLE `Post` DROP COLUMN `pippo`,
|
||
|
MODIFY `content` TEXT NULL;
|