Massive/plan.ts

14 lines
217 B
TypeScript
Raw Normal View History

2022-10-31 04:22:08 +00:00
import {Column, Entity, PrimaryGeneratedColumn} from 'typeorm'
@Entity('plans')
export class Plan {
@PrimaryGeneratedColumn()
2022-10-31 04:22:08 +00:00
id?: number
@Column('text')
2022-10-31 04:22:08 +00:00
days: string
@Column('text')
2022-10-31 04:22:08 +00:00
workouts: string
2022-07-06 05:40:53 +00:00
}