jws-backend/prisma/migrations/20240611042536_add_field/migration.sql

11 lines
297 B
MySQL
Raw Normal View History

2024-06-11 11:27:00 +07:00
/*
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;