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() @JoinColumn()
province: RemitIndoProvince; province: RemitIndoProvince;
@Column({
nullable: true,
length: 256,
})
code: string;
@Column({ @Column({
nullable: true, nullable: true,
length: 256, length: 256,

View File

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