RenaiApp/src/main/entities/library/transformation-type-name.ts

22 lines
613 B
TypeScript

import { Column, Entity, ManyToOne, PrimaryGeneratedColumn } from 'typeorm';
import { TransformationType } from './transformation-type';
@Entity()
export class TransformationTypeName implements IdentifiableEntityInterface, NameEntityInterface {
@PrimaryGeneratedColumn()
public id!: number;
@ManyToOne(() => TransformationType, (transformationType: TransformationType) => transformationType.names, {
nullable: false,
onDelete: 'CASCADE',
onUpdate: 'CASCADE',
})
public entity!: Promise<TransformationType>;
@Column({
nullable: false,
default: '',
})
public name!: string;
}