Update default value for profile picture in UserEntity

This commit is contained in:
faris Aljohari
2024-07-22 14:21:44 +03:00
parent bfd0cb6078
commit 14b2a22239

View File

@ -23,7 +23,7 @@ export class UserEntity extends AbstractEntity<UserDto> {
@Column({ @Column({
nullable: true, nullable: true,
type: 'text', type: 'text',
default: defaultProfilePicture, default: '',
}) })
public profilePicture: string; public profilePicture: string;