feat: เพิ่ม OneToMany
This commit is contained in:
parent
049b591c77
commit
258272c6df
4 changed files with 22 additions and 3 deletions
|
|
@ -1,6 +1,8 @@
|
|||
import { Entity, Column} from "typeorm";
|
||||
import { Entity, Column, OneToMany } from "typeorm";
|
||||
import { EntityBase } from "./base/Base";
|
||||
|
||||
import { ProfileInformation } from "./ProfileInformation";
|
||||
|
||||
@Entity("relationship")
|
||||
export class Relationship extends EntityBase {
|
||||
@Column({
|
||||
|
|
@ -10,6 +12,9 @@ export class Relationship extends EntityBase {
|
|||
default: null,
|
||||
})
|
||||
name: string;
|
||||
|
||||
@OneToMany(() => ProfileInformation, (profileInformation) => profileInformation.relationshipId)
|
||||
profileInformations: ProfileInformation[];
|
||||
}
|
||||
|
||||
export class CreateRelationship {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue