Fixes #2113
@@ -22,7 +22,7 @@ export class PaymentMethodTranslation
@Column() name: string;
- @Column('text', { default: '' }) description: string;
+ @Column('text', { nullable: true }) description: string;
@Index()
@ManyToOne(type => PaymentMethod, base => base.translations, { onDelete: 'CASCADE' })
@@ -19,7 +19,7 @@ export class PromotionTranslation extends VendureEntity implements Translation<P
@ManyToOne(type => Promotion, base => base.translations, { onDelete: 'CASCADE' })