hotfix: column type of newsletter texts
This commit is contained in:
parent
cee8912191
commit
b934953aca
3 changed files with 47 additions and 2 deletions
|
@ -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 })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue