🐛 Fix licensing checkout and webhook (#1731)

This commit is contained in:
Luke Vella 2025-05-26 19:07:17 +01:00 committed by GitHub
parent 518b66aa9a
commit 3ae7f7e021
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 30 additions and 31 deletions

View file

@ -0,0 +1,8 @@
/*
Warnings:
- You are about to drop the column `stripe_customer_id` on the `licenses` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "licenses" DROP COLUMN "stripe_customer_id";

View file

@ -20,7 +20,6 @@ model License {
licenseeEmail String? @map("licensee_email")
licenseeName String? @map("licensee_name")
status LicenseStatus @default(ACTIVE) @map("status")
stripeCustomerId String? @map("stripe_customer_id")
validations LicenseValidation[]