Skip to content

Instantly share code, notes, and snippets.

@paulodutra
Last active August 11, 2024 16:59
Show Gist options
  • Save paulodutra/6626082eb086eaa79384621cdcf17b36 to your computer and use it in GitHub Desktop.
Save paulodutra/6626082eb086eaa79384621cdcf17b36 to your computer and use it in GitHub Desktop.
Task entity typeorm
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class Task {
@PrimaryGeneratedColumn()
id: number;
@Column()
name: string;
@Column()
done: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment