Skip to content

Instantly share code, notes, and snippets.

@talesmgodois
Created September 29, 2020 13:24
Show Gist options
  • Save talesmgodois/43a161a16e3ae253fe893035ac630e68 to your computer and use it in GitHub Desktop.
Save talesmgodois/43a161a16e3ae253fe893035ac630e68 to your computer and use it in GitHub Desktop.
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number;
@Column()
firstName: string;
@Column()
lastName: string;
@Column({ default: true })
isActive: boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment