chore: create legal and real user data info
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { Column, Entity, ManyToOne, PrimaryGeneratedColumn } from "typeorm";
|
||||
import { Column, Entity, ManyToOne, OneToMany, PrimaryGeneratedColumn } from "typeorm";
|
||||
|
||||
import { Address } from "./address.entity";
|
||||
import { Province } from "./province.entity";
|
||||
|
||||
@Entity()
|
||||
@@ -10,6 +11,9 @@ export class City {
|
||||
@Column({ type: "varchar", length: 255 })
|
||||
name: string;
|
||||
|
||||
@OneToMany(() => Address, (address) => address.city)
|
||||
addresses: Address[];
|
||||
|
||||
@ManyToOne(() => Province, (province) => province.cities, { nullable: false })
|
||||
province: Province;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user