From ea9406fb5ea644c392e8918978aa88967b962498 Mon Sep 17 00:00:00 2001 From: Joshua Okoro Date: Wed, 24 Sep 2025 11:34:04 -0500 Subject: [PATCH] chore: adding success and cancel url to product table in schema --- prisma/schema.prisma | 2 ++ 1 file changed, 2 insertions(+) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index fdaf7df..361e879 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -29,6 +29,8 @@ model Product { pricingTables PricingTable[] licenses License[] subscriptions Subscription[] + successUrl String? @db.Text + cancelUrl String? @db.Text currencies CurrenciesOnProduct[] updatedAt DateTime @default(now()) @updatedAt archivedAt DateTime?