10 lines
232 B
MySQL
10 lines
232 B
MySQL
|
/*
|
||
|
Warnings:
|
||
|
|
||
|
- 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 "name",
|
||
|
ADD COLUMN "fullName" TEXT NOT NULL DEFAULT E'';
|