diff --git a/prisma/migrations/20240405094638_update/migration.sql b/prisma/migrations/20240405094638_update/migration.sql new file mode 100644 index 0000000..f5bdc4b --- /dev/null +++ b/prisma/migrations/20240405094638_update/migration.sql @@ -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; diff --git a/prisma/schema.prisma b/prisma/schema.prisma index d1f1ef4..9896ee5 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -153,6 +153,7 @@ model User { firstNameEN String lastName String lastNameEN String + gender String address String addressEN String