10 lines
228 B
MySQL
10 lines
228 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `birtDate` on the `User` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "User" DROP COLUMN "birtDate",
|
||
|
|
ADD COLUMN "birthDate" TIMESTAMP(3);
|