fix: typo
This commit is contained in:
parent
ac58fe47e9
commit
f7eea342cc
2 changed files with 10 additions and 1 deletions
9
prisma/migrations/20240410053228_fix_typo/migration.sql
Normal file
9
prisma/migrations/20240410053228_fix_typo/migration.sql
Normal 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);
|
||||
|
|
@ -199,7 +199,7 @@ model User {
|
|||
trainingPlace String?
|
||||
responsibleArea String?
|
||||
|
||||
birtDate DateTime?
|
||||
birthDate DateTime?
|
||||
|
||||
status Status @default(CREATED)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue