This commit is contained in:
2025-11-20 04:04:58 +09:00
parent 3b4293b0ab
commit f1c7add92a
2 changed files with 18 additions and 0 deletions

View File

@ -51,6 +51,12 @@ export class TrxCustomerUser {
})
name: string;
@Column({
nullable: false,
length: 256,
})
file: string;
@Column({
type: "jsonb",
nullable: true,

View File

@ -129,6 +129,18 @@ export class TrxCustomer {
@JoinTable()
country: TrxCountry;
@Column({
nullable: true,
length: 256,
})
identity_number: string;
@Column({
nullable: true,
length: 256,
})
identity_type: TrxIdentityType;
@Column({
nullable: true,
length: 256,