10 lines
413 B
SQL
10 lines
413 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `birthPlaceEN` on the `EmployeeOtherInfo` table. All the data in the column will be lost.
|
|
- Added the required column `birthPlace` to the `EmployeeOtherInfo` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "EmployeeOtherInfo" DROP COLUMN "birthPlaceEN",
|
|
ADD COLUMN "birthPlace" TEXT NOT NULL;
|