10 lines
297 B
SQL
10 lines
297 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `birthPlace` on the `EmployeeOtherInfo` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "EmployeeOtherInfo" DROP COLUMN "birthPlace",
|
|
ADD COLUMN "fatherBirthPlace" TEXT,
|
|
ADD COLUMN "motherBirthPlace" TEXT;
|