jws-backend/prisma/migrations/20240919070631_add_missing_citizen_field/migration.sql
2024-09-19 14:06:36 +07:00

9 lines
297 B
SQL

/*
Warnings:
- Added the required column `citizenId` to the `CustomerBranchCitizen` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "CustomerBranchCitizen" ADD COLUMN "birthDate" DATE,
ADD COLUMN "citizenId" TEXT NOT NULL;