9 lines
297 B
SQL
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;
|