fix: type avatar & avatarName, clear value null
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m39s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m39s
This commit is contained in:
parent
74752361be
commit
e92321d360
4 changed files with 12 additions and 8 deletions
|
|
@ -57,15 +57,17 @@ export class Profile extends EntityBase {
|
|||
nullable: true,
|
||||
comment: "รูปถ่าย",
|
||||
default: null,
|
||||
type: "varchar",
|
||||
})
|
||||
avatar: string ;
|
||||
avatar: string | null;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "รูปถ่าย",
|
||||
default: null,
|
||||
type: "varchar",
|
||||
})
|
||||
avatarName: string;
|
||||
avatarName: string | null;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
|
|
|
|||
|
|
@ -45,15 +45,17 @@ export class ProfileEmployee extends EntityBase {
|
|||
nullable: true,
|
||||
comment: "รูปถ่าย",
|
||||
default: null,
|
||||
type: "varchar",
|
||||
})
|
||||
avatar: string;
|
||||
avatar: string | null;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "รูปถ่าย",
|
||||
default: null,
|
||||
type: "varchar",
|
||||
})
|
||||
avatarName: string;
|
||||
avatarName: string | null;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue