migrate เพิ่มฟิลด์บันทึกที่โครงสร้าง orgRoot, orgChild1, ..., orgChild4 #252
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m5s

This commit is contained in:
harid 2026-06-15 17:17:36 +07:00
parent c398354208
commit b722068758
11 changed files with 102 additions and 0 deletions

View file

@ -158,6 +158,14 @@ export class OrgChild4 extends EntityBase {
})
JOB_CODE: string;
@Column({
nullable: true,
length: 3,
comment: "CHILD4_CODE",
default: null,
})
CHILD4_CODE: string;
@Column({
nullable: true,
length: 40,
@ -236,6 +244,9 @@ export class CreateOrgChild4 {
@Column()
JOB_CODE?: string;
@Column()
CHILD4_CODE?: string;
@Column()
orgChild4PhoneEx?: string;
@ -283,6 +294,9 @@ export class UpdateOrgChild4 {
@Column()
JOB_CODE?: string | null;
@Column()
CHILD4_CODE?: string | null;
@Column()
orgChild4PhoneEx?: string;