Skip to content

Instantly share code, notes, and snippets.

@davidcsejtei
Created October 18, 2020 09:27
Show Gist options
  • Select an option

  • Save davidcsejtei/ea8820b8153745e2c710f179cc345181 to your computer and use it in GitHub Desktop.

Select an option

Save davidcsejtei/ea8820b8153745e2c710f179cc345181 to your computer and use it in GitHub Desktop.
User Entity for TypeORM
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number = 0;
@Column()
name: string = "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment