Massive/plan-workout.ts
Brandon Presley 6d46fe959c Pause adding intermediary tables
I am struggling to remember why I started doing this.
I can't think of any real benefit.
2022-12-09 15:06:29 +13:00

11 lines
200 B
TypeScript

import {Column, Entity, PrimaryColumn} from 'typeorm'
@Entity('plans_workouts_workouts')
export class PlanWorkout {
@PrimaryColumn('int')
plansId: number
@Column('int')
workoutsId: number
}