This commit is contained in:
2025-11-20 04:03:28 +09:00
parent 9a0782510e
commit 3b4293b0ab
2 changed files with 87 additions and 21 deletions

View File

@ -51,12 +51,6 @@ export class TrxCustomerUser {
})
name: string;
@Column({
nullable: false,
length: 256,
})
file: string;
@Column({
type: "jsonb",
nullable: true,
@ -89,7 +83,49 @@ export class TrxCustomerUser {
nullable: true,
length: 256,
})
identity_number: string;
identity_number_electoral: string;
@Column({
nullable: true,
length: 256,
})
identity_file_electoral: string;
@Column({
nullable: true,
length: 256,
})
identity_number_passport: string;
@Column({
nullable: true,
length: 256,
})
identity_file_passport: string;
@Column({
nullable: true,
length: 256,
})
identity_number_bi: string;
@Column({
nullable: true,
length: 256,
})
identity_file_bi: string;
@Column({
nullable: true,
length: 256,
})
identity_number_visa: string;
@Column({
nullable: true,
length: 256,
})
identity_file_visa: string;
@Column({
nullable: true,

View File

@ -56,10 +56,52 @@ export class TrxCustomer {
pic_email: string;
@Column({
nullable: false,
nullable: true,
length: 256,
})
pic_file: string;
pic_file_electoral: string;
@Column({
nullable: true,
length: 256,
})
pic_number_electoral: string;
@Column({
nullable: true,
length: 256,
})
pic_file_bi: string;
@Column({
nullable: true,
length: 256,
})
pic_number_bi: string;
@Column({
nullable: true,
length: 256,
})
pic_file_passport: string;
@Column({
nullable: true,
length: 256,
})
pic_number_passport: string;
@Column({
nullable: true,
length: 256,
})
pic_number_visa: string;
@Column({
nullable: true,
length: 256,
})
pic_file_visa: string;
@Column({
nullable: false,
@ -87,18 +129,6 @@ 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,