10 lines
297 B
MySQL
10 lines
297 B
MySQL
|
|
/*
|
||
|
|
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;
|