Skip to content

Commit

Permalink
Merge pull request #18 from 2023-Marble/hotfix/#17-image-entity
Browse files Browse the repository at this point in the history
hotfix: Image 엔티티 오류 수정
  • Loading branch information
kminji127 authored Oct 3, 2023
2 parents cc4e79a + d7521bf commit 1d8c00a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/image/schemas/image.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ export class Image extends BaseEntity {
@Column('longtext')
vector: string;

@ManyToOne((type) => User, (user) => user.mosaics, { eager: false })
@ManyToOne((type) => User, (user) => user.images, { eager: false })
userId: number;
}

0 comments on commit 1d8c00a

Please sign in to comment.