9 lines
228 B
SQL
9 lines
228 B
SQL
/*
|
|
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);
|