9 lines
266 B
SQL
9 lines
266 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `workPermitIssuDate` on the `EmployeeWork` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "EmployeeWork" DROP COLUMN "workPermitIssuDate",
|
|
ADD COLUMN "workPermitIssueDate" DATE;
|