update entity

This commit is contained in:
Zamitto 2024-06-16 18:48:04 -03:00
parent 54d137e3ae
commit ab5e6c1f7a

View File

@ -17,8 +17,8 @@ export class UserAuth {
@Column("text", { default: "" }) @Column("text", { default: "" })
displayName: string; displayName: string;
@Column("text", { default: "" }) @Column("text", { nullable: true })
profileImageUrl: string; profileImageUrl: string | null;
@Column("text", { default: "" }) @Column("text", { default: "" })
accessToken: string; accessToken: string;