17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
|
import { Column, Entity, OneToMany, PrimaryColumn } from "typeorm";
|
||
|
import { member_awards } from "./member_awards";
|
||
|
|
||
|
@Entity()
|
||
|
export class award {
|
||
|
@PrimaryColumn({ generated: "uuid", type: "varchar", length: 36 })
|
||
|
id: string;
|
||
|
|
||
|
@Column({ type: "varchar", length: 255 })
|
||
|
award: string;
|
||
|
|
||
|
@OneToMany(() => member_awards, (member) => member.award, {
|
||
|
onDelete: "RESTRICT",
|
||
|
})
|
||
|
members: member_awards[];
|
||
|
}
|