Migration add fields isDeleted #210
This commit is contained in:
parent
3c9e3a1bb6
commit
65e3740cc2
82 changed files with 499 additions and 180 deletions
|
|
@ -66,6 +66,13 @@ export class ProfileAbilityHistory extends EntityBase {
|
|||
})
|
||||
profileAbilityId: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
comment: "สถานะลบข้อมูล",
|
||||
default: false,
|
||||
})
|
||||
isDeleted: boolean;
|
||||
|
||||
@ManyToOne(() => ProfileAbility, (profileAbility) => profileAbility.profileAbilityHistorys)
|
||||
@JoinColumn({ name: "profileAbilityId" })
|
||||
histories: ProfileAbility;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue