This commit is contained in:
fro1991
2025-07-15 11:47:35 +07:00
parent dc680361c0
commit 88629c3397
2 changed files with 12 additions and 0 deletions

View File

@ -14,6 +14,12 @@ export class RemitIndoCity {
@JoinColumn()
province: RemitIndoProvince;
@Column({
nullable: true,
length: 256,
})
code: string;
@Column({
nullable: true,
length: 256,

View File

@ -9,6 +9,12 @@ export class RemitIndoProvince {
@PrimaryGeneratedColumn("uuid")
id: string;
@Column({
nullable: true,
length: 256,
})
code: string;
@Column({
nullable: true,
length: 256,