hotfix: column type of newsletter texts

This commit is contained in:
Julian Krauser 2025-04-11 08:13:55 +02:00
parent cee8912191
commit b934953aca
3 changed files with 47 additions and 2 deletions

View file

@ -14,13 +14,13 @@ export class newsletter {
@Column({ type: "varchar", length: 255, default: "" })
description: string;
@Column({ type: "varchar", length: 255, default: "" })
@Column({ type: "text", default: "" })
newsletterTitle: string;
@Column({ type: "text", default: "" })
newsletterText: string;
@Column({ type: "varchar", length: 255, default: "" })
@Column({ type: "text", default: "" })
newsletterSignatur: string;
@Column({ type: "boolean", default: false })