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; id: string;
@Column({ @Column({
nullable: false, nullable: true,
unique: false, unique: false,
length: 64, length: 64,
}) })
email: string; email: string;
@Column({ @Column({
nullable: false, nullable: true,
length: 64, length: 64,
select: false, select: false,
}) })
@ -32,7 +32,7 @@ export class RemitPartnerUser {
username: string; username: string;
@Column({ @Column({
nullable: true, nullable: false,
length: 64, length: 64,
unique: false, unique: false,
}) })