chore: add migration
This commit is contained in:
parent
f9a737faff
commit
5bafff7482
2 changed files with 9 additions and 0 deletions
8
prisma/migrations/20240405094638_update/migration.sql
Normal file
8
prisma/migrations/20240405094638_update/migration.sql
Normal 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;
|
||||
|
|
@ -153,6 +153,7 @@ model User {
|
|||
firstNameEN String
|
||||
lastName String
|
||||
lastNameEN String
|
||||
gender String
|
||||
|
||||
address String
|
||||
addressEN String
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue