We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2f3833 commit 5768485Copy full SHA for 5768485
src/datasources/db/paymentLogs.ts
@@ -30,7 +30,10 @@ export const paymentLogsSchema = pgTable(
30
withTimezone: true,
31
}),
32
currencyId: text("currency_id").notNull(),
33
- originalResponseBlob: jsonb("original_response_blob").notNull(),
+ originalResponseBlob: jsonb("original_response_blob").default({
34
+ payment_status: "pending",
35
+ status: "pending",
36
+ }),
37
...createdAndUpdatedAtFields,
38
},
39
(t) => ({
0 commit comments