fix: change json column types to simple-json in barcode template and print job entities
Build and Push Multi-Platform Images / build-and-push (push) Successful in 29s

This commit is contained in:
2026-05-09 06:47:19 +02:00
parent ebe6f48dd9
commit af2af83709
2 changed files with 3 additions and 3 deletions
@@ -49,7 +49,7 @@ export class BarcodeTemplate {
@Column({ type: 'int', nullable: true })
LabelHeightMm!: number | null;
@Column({ type: 'json', nullable: true })
@Column({ type: 'simple-json', nullable: true })
LabelInputFields!: LabelInputField[] | null;
@Column({ type: 'varchar', length: 1000, nullable: true })
@@ -61,7 +61,7 @@ export class BarcodeTemplate {
@Column({ type: 'varchar', length: 1000, nullable: true })
LabelReleaseUrl!: string | null;
@Column({ type: 'json', nullable: true })
@Column({ type: 'simple-json', nullable: true })
LabelLayout!: LabelElement[] | null;
@CreateDateColumn()
@@ -25,7 +25,7 @@ export class LabelPrintJob {
@Column({ type: 'int', nullable: true })
BarcodeTemplateId!: number | null;
@Column({ type: 'json', nullable: true })
@Column({ type: 'simple-json', nullable: true })
LabelVariables!: Record<string, string> | null;
@Column({ type: 'datetime', nullable: true })