jws-backend/prisma/migrations/20240610062435_fix_prev_typo/migration.sql

11 lines
413 B
MySQL
Raw Normal View History

2024-06-10 14:12:10 +07:00
/*
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;