zylinder entity

This commit is contained in:
Bastian Wagner
2026-02-25 10:28:24 +01:00
parent 447ac5d6ca
commit d9f633deef
2 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ export class Cylinder {
description: string;
@Column({name: 'digital', type: 'boolean', default: false})
isDigital: boolean;
digital: boolean;
@ManyToMany(() => Key, (key) => key.cylinder, { onDelete: 'NO ACTION'})