11 lines
434 B
SQL
11 lines
434 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `first_Work_Day` on the `employees_archive` table. All the data in the column will be lost.
|
|
- Added the required column `first_work_day` to the `employees_archive` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "public"."employees_archive" DROP COLUMN "first_Work_Day",
|
|
ADD COLUMN "first_work_day" DATE NOT NULL;
|