Massive/plan.ts

14 lines
219 B
TypeScript
Raw Normal View History

2023-06-27 03:16:59 +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
}