Created
May 30, 2020 22:15
-
-
Save vinipachecov/0b830bfe0b37b90f528ee3ec4cd54226 to your computer and use it in GitHub Desktop.
Category file for React-Native typeorm setup
This file contains 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/browser'; | |
@Entity('category') | |
export class Category { | |
@PrimaryGeneratedColumn() | |
id: number; | |
@Column() | |
name: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment