Supplementary payments issue resolution

This commit is contained in:
Stephanos A
2026-07-17 18:41:59 +03:00
parent f3c0fd6cbb
commit 2e37bd7b4e
3 changed files with 31 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ export class PaymentIntent extends BaseEntity {
@Column({ name: "service", type: "varchar", length: 16 })
service!: PaymentService;
@Column({ name: "reference_type", type: "varchar", length: 16 })
@Column({ name: "reference_type", type: "varchar", length: 32 })
referenceType!: PaymentReferenceType;
/** Domain order id (booking/shipment). Soft reference — no cross-schema FK. */

View File

@@ -28,7 +28,7 @@ export class NotificationOutbox extends BaseEntity {
@Column({ name: "intent_id", type: "uuid" })
intentId!: string;
@Column({ name: "reference_type", type: "varchar", length: 16 })
@Column({ name: "reference_type", type: "varchar", length: 32 })
referenceType!: PaymentReferenceType;
@Column({ name: "reference_id", type: "varchar", length: 64 })