Files
simrsx-be/cmd/main-migration/migrations/20251018032635.sql
Munawwirul Jamal 3d165447f5 migration:
+ added intern
+ updated employee
+ updated user
2025-10-19 07:09:48 +07:00

5 lines
267 B
SQL

-- Modify "Employee" table
ALTER TABLE "public"."Employee" ADD COLUMN "Position_Code" character varying(20) NULL;
-- Rename a column from "Position_Code" to "ContractPosition_Code"
ALTER TABLE "public"."User" RENAME COLUMN "Position_Code" TO "ContractPosition_Code";