Skip to content

Instantly share code, notes, and snippets.

View ericwooley's full-sized avatar
😜

Eric Wooley ericwooley

😜
View GitHub Profile
@ericwooley
ericwooley / Todoitem.ts
Created April 2, 2021 16:51
TodoItem.ts part 1
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
@Entity()
export class TodoItem {
@PrimaryGeneratedColumn()
id: number;
@Column()
name: string;
@ericwooley
ericwooley / List.ts
Last active April 2, 2021 17:17
List entity, part 1
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
@Entity()
export class List {
@PrimaryGeneratedColumn()
id: number;
@Column()
name: string;
}