fix: type avatar & avatarName, clear value null
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m39s

This commit is contained in:
Warunee Tamkoo 2026-01-31 12:37:25 +07:00
parent 74752361be
commit e92321d360
4 changed files with 12 additions and 8 deletions

View file

@ -165,8 +165,8 @@ export class ProfileAvatarController extends Controller {
where: { id: _record.profileId }, where: { id: _record.profileId },
}); });
if (profile) { if (profile) {
profile.avatar = ""; profile.avatar = null;
profile.avatarName = ""; profile.avatarName = null;
await this.profileRepository.save(profile, { data: req }); await this.profileRepository.save(profile, { data: req });
} }
} }

View file

@ -160,8 +160,8 @@ export class ProfileAvatarEmployeeController extends Controller {
where: { id: _record.profileEmployeeId }, where: { id: _record.profileEmployeeId },
}); });
if (profile) { if (profile) {
profile.avatar = ""; profile.avatar = null;
profile.avatarName = ""; profile.avatarName = null;
await this.profileRepository.save(profile, { data: req }); await this.profileRepository.save(profile, { data: req });
} }
} }

View file

@ -57,15 +57,17 @@ export class Profile extends EntityBase {
nullable: true, nullable: true,
comment: "รูปถ่าย", comment: "รูปถ่าย",
default: null, default: null,
type: "varchar",
}) })
avatar: string ; avatar: string | null;
@Column({ @Column({
nullable: true, nullable: true,
comment: "รูปถ่าย", comment: "รูปถ่าย",
default: null, default: null,
type: "varchar",
}) })
avatarName: string; avatarName: string | null;
@Column({ @Column({
nullable: true, nullable: true,

View file

@ -45,15 +45,17 @@ export class ProfileEmployee extends EntityBase {
nullable: true, nullable: true,
comment: "รูปถ่าย", comment: "รูปถ่าย",
default: null, default: null,
type: "varchar",
}) })
avatar: string; avatar: string | null;
@Column({ @Column({
nullable: true, nullable: true,
comment: "รูปถ่าย", comment: "รูปถ่าย",
default: null, default: null,
type: "varchar",
}) })
avatarName: string; avatarName: string | null;
@Column({ @Column({
nullable: true, nullable: true,