import { Entity, Column, PrimaryGeneratedColumn, ManyToOne } from "typeorm" import { PhotoMetadata } from "./PhotoMetadata" import { Author } from "./Author" @Entity() export class Photo { /* ... other columns */ @ManyToOne(() => Author, (author) => author.photos) author: Author }