From 89d6d7e846e4958976443d77ab5e52703365c7a7 Mon Sep 17 00:00:00 2001 From: fPolic Date: Mon, 15 Jan 2024 18:04:39 +0100 Subject: [PATCH] fix: add order_edit_id to Payment --- packages/payment/src/models/payment.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/payment/src/models/payment.ts b/packages/payment/src/models/payment.ts index 15941df136..0f1b5071a0 100644 --- a/packages/payment/src/models/payment.ts +++ b/packages/payment/src/models/payment.ts @@ -63,6 +63,9 @@ export default class Payment { @Property({ columnType: "text", nullable: true }) order_id: string | null + @Property({ columnType: "text", nullable: true }) + order_edit_id: string | null + @Property({ columnType: "text", nullable: true }) customer_id: string | null