Skip to content

Instantly share code, notes, and snippets.

@songthamtung
Created December 14, 2019 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save songthamtung/d0ab8d7ea3d5b2417351a076d8b7fa49 to your computer and use it in GitHub Desktop.
Save songthamtung/d0ab8d7ea3d5b2417351a076d8b7fa49 to your computer and use it in GitHub Desktop.
import {Entity, PrimaryGeneratedColumn, Column} from "typeorm";
@Entity()
export class Company {
@PrimaryGeneratedColumn()
id: number;
@Column()
name: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment