Skip to content

Commit 5768485

Browse files
committed
fixed lint
1 parent e2f3833 commit 5768485

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/datasources/db/paymentLogs.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ export const paymentLogsSchema = pgTable(
3030
withTimezone: true,
3131
}),
3232
currencyId: text("currency_id").notNull(),
33-
originalResponseBlob: jsonb("original_response_blob").notNull(),
33+
originalResponseBlob: jsonb("original_response_blob").default({
34+
payment_status: "pending",
35+
status: "pending",
36+
}),
3437
...createdAndUpdatedAtFields,
3538
},
3639
(t) => ({

0 commit comments

Comments
 (0)