Last active
April 2, 2021 17:17
-
-
Save ericwooley/bb58b32a29383c73ce98592eb1603829 to your computer and use it in GitHub Desktop.
List entity, part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm'; | |
@Entity() | |
export class List { | |
@PrimaryGeneratedColumn() | |
id: number; | |
@Column() | |
name: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment