Massive/plan.ts
Brandon Presley 8988e584ae Rename workout -> exercise
A workout would typically refer to a list of
exercises.
2023-11-09 18:52:50 +13:00

17 lines
261 B
TypeScript

import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
@Entity("plans")
export class Plan {
@PrimaryGeneratedColumn()
id?: number;
@Column("text")
title?: string;
@Column("text")
days: string;
@Column("text")
exercises: string;
}