Massive/plan-day.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
184 B
TypeScript

import {Column, Entity, PrimaryColumn} from 'typeorm'
@Entity('plans_days_days')
export class PlanDay {
@PrimaryColumn('int')
plansId: number
@Column('int')
daysId: number
}