This commit is contained in:
meusinfirmary
2025-03-25 03:25:00 +07:00
parent 7eaf9885e2
commit 5ac199e7b1

View File

@ -11,14 +11,14 @@ export class RemitPartnerUser {
id: string;
@Column({
nullable: false,
nullable: true,
unique: false,
length: 64,
})
email: string;
@Column({
nullable: false,
nullable: true,
length: 64,
select: false,
})
@ -32,7 +32,7 @@ export class RemitPartnerUser {
username: string;
@Column({
nullable: true,
nullable: false,
length: 64,
unique: false,
})