migrate add field all tables #252
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m12s

This commit is contained in:
harid 2026-06-16 09:53:23 +07:00
parent 6319f7206a
commit 7c77745d46
11 changed files with 371 additions and 0 deletions

View file

@ -153,6 +153,30 @@ export class OrgChild3 extends EntityBase {
})
JOB_CODE: string;
@Column({
nullable: true,
length: 3,
comment: "ROOT_CODE",
default: null,
})
ROOT_CODE: string;
@Column({
nullable: true,
length: 3,
comment: "CHILD1_CODE",
default: null,
})
CHILD1_CODE: string;
@Column({
nullable: true,
length: 3,
comment: "CHILD2_CODE",
default: null,
})
CHILD2_CODE: string;
@Column({
nullable: true,
length: 3,
@ -161,6 +185,14 @@ export class OrgChild3 extends EntityBase {
})
CHILD3_CODE: string;
@Column({
nullable: true,
length: 3,
comment: "CHILD4_CODE",
default: null,
})
CHILD4_CODE: string;
@Column({
nullable: true,
length: 40,
@ -238,9 +270,21 @@ export class CreateOrgChild3 {
@Column()
JOB_CODE?: string;
@Column()
ROOT_CODE?: string;
@Column()
CHILD1_CODE?: string;
@Column()
CHILD2_CODE?: string;
@Column()
CHILD3_CODE?: string;
@Column()
CHILD4_CODE?: string;
@Column()
orgChild3PhoneEx?: string;
@ -290,9 +334,21 @@ export class UpdateOrgChild3 {
@Column()
JOB_CODE?: string | null;
@Column()
ROOT_CODE?: string | null;
@Column()
CHILD1_CODE?: string | null;
@Column()
CHILD2_CODE?: string | null;
@Column()
CHILD3_CODE?: string | null;
@Column()
CHILD4_CODE?: string | null;
@Column()
orgChild3PhoneEx?: string;