This commit is contained in:
meusinfirmary
2025-06-04 03:47:53 +07:00
parent 32a780f8e1
commit 8a9141ced7

View File

@ -6,7 +6,7 @@ export class RemitPartner {
id: string; id: string;
@Column({ @Column({
nullable: false, nullable: true,
unique: true, unique: true,
length: 256, length: 256,
}) })
@ -123,14 +123,14 @@ export class RemitPartner {
document_file: string; document_file: string;
@Column({ @Column({
nullable: false, nullable: true,
unique: false, unique: false,
length: 256, length: 256,
}) })
account_number_tl: string; account_number_tl: string;
@Column({ @Column({
nullable: false, nullable: true,
unique: false, unique: false,
length: 256, length: 256,
}) })