fix: typo

This commit is contained in:
Methapon2001 2024-04-10 12:32:40 +07:00
parent ac58fe47e9
commit f7eea342cc
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,9 @@
/*
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);

View file

@ -199,7 +199,7 @@ model User {
trainingPlace String?
responsibleArea String?
birtDate DateTime?
birthDate DateTime?
status Status @default(CREATED)