Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created August 20, 2020 10:38
Show Gist options
  • Select an option

  • Save nmchenry01/57e7ca115bcdb2ab0c5dbbee1d61995a to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/57e7ca115bcdb2ab0c5dbbee1d61995a to your computer and use it in GitHub Desktop.
Company entity for "Prisma vs. TypeORM"
@Entity()
export class Company {
@PrimaryGeneratedColumn()
id: number;
@Column({ unique: true })
name: string;
@CreateDateColumn()
createdAt: string;
@OneToMany(() => Product, (product) => product.company)
products: Product[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment