migrate เพิ่มฟิลด์บันทึกที่โครงสร้าง orgRoot, orgChild1, ..., orgChild4 #252
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m5s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m5s
This commit is contained in:
parent
c398354208
commit
b722068758
11 changed files with 102 additions and 0 deletions
|
|
@ -146,6 +146,14 @@ export class OrgChild2 extends EntityBase {
|
|||
})
|
||||
JOB_CODE: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 3,
|
||||
comment: "CHILD2_CODE",
|
||||
default: null,
|
||||
})
|
||||
CHILD2_CODE: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 40,
|
||||
|
|
@ -222,6 +230,9 @@ export class CreateOrgChild2 {
|
|||
@Column()
|
||||
JOB_CODE?: string;
|
||||
|
||||
@Column()
|
||||
CHILD2_CODE?: string;
|
||||
|
||||
@Column()
|
||||
orgChild2PhoneEx?: string;
|
||||
|
||||
|
|
@ -269,6 +280,9 @@ export class UpdateOrgChild2 {
|
|||
@Column()
|
||||
JOB_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
CHILD2_CODE?: string | null;
|
||||
|
||||
@Column()
|
||||
orgChild2PhoneEx?: string;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue