11 lines
413 B
MySQL
11 lines
413 B
MySQL
|
|
/*
|
||
|
|
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;
|