migrate add field all tables #252
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m12s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m12s
This commit is contained in:
parent
6319f7206a
commit
7c77745d46
11 changed files with 371 additions and 0 deletions
|
|
@ -158,6 +158,38 @@ export class OrgChild4 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,
|
||||
comment: "CHILD3_CODE",
|
||||
default: null,
|
||||
})
|
||||
CHILD3_CODE: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 3,
|
||||
|
|
@ -244,6 +276,18 @@ export class CreateOrgChild4 {
|
|||
@Column()
|
||||
JOB_CODE?: string;
|
||||
|
||||
@Column()
|
||||
ROOT_CODE?: string;
|
||||
|
||||
@Column()
|
||||
CHILD1_CODE?: string;
|
||||
|
||||
@Column()
|
||||
CHILD2_CODE?: string;
|
||||
|
||||
@Column()
|
||||
CHILD3_CODE?: string;
|
||||
|
||||
@Column()
|
||||
CHILD4_CODE?: string;
|
||||
|
||||
|
|
@ -294,6 +338,18 @@ export class UpdateOrgChild4 {
|
|||
@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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue