migration:

+ added intern
+ updated employee
+ updated user
This commit is contained in:
2025-10-19 07:09:48 +07:00
parent c82ee6a96c
commit 3d165447f5
9 changed files with 213 additions and 90 deletions

No files matched your search

@@ -0,0 +1,4 @@
-- 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";