10 lines
266 B
MySQL
10 lines
266 B
MySQL
|
|
/*
|
||
|
|
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;
|