Skip to content

Commit

Permalink
feat(invoices): increease Db field
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvdbrug committed Aug 14, 2023
1 parent 00ca85f commit 47a8905
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vendure-plugin-invoices/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 1.1.0 (2023-08-14)

- Expose Stripe publishable key via `eligiblePaymemtMethods.stripeSubscriptionPublishableKey` ([#242](https://github.com/Pinelab-studio/pinelab-vendure-plugins/pull/242))
- Increase length of invoice template column, so that we can store more than 64KB ([#243](https://github.com/Pinelab-studio/pinelab-vendure-plugins/pull/243))
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ export class InvoiceConfigEntity extends VendureEntity {
channelId!: string;
@Column({ default: false })
enabled: boolean = false;
@Column({ type: 'text', nullable: true })
@Column({ type: 'longtext', nullable: true })
templateString?: string | null;
}

0 comments on commit 47a8905

Please sign in to comment.