chore: add migration

This commit is contained in:
Methapon2001 2024-04-05 16:46:47 +07:00
parent f9a737faff
commit 5bafff7482
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,8 @@
/*
Warnings:
- Added the required column `gender` to the `User` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "User" ADD COLUMN "gender" TEXT NOT NULL;

View file

@ -153,6 +153,7 @@ model User {
firstNameEN String
lastName String
lastNameEN String
gender String
address String
addressEN String