[web] profile: add Tazapay customer ID field

This commit is contained in:
Yangshun 2025-08-08 11:36:06 +08:00
parent 71f2b14726
commit 78d3b40fae
3 changed files with 9 additions and 6 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Profile" ADD COLUMN "tazapayCustomerId" TEXT;

View File

@ -1,3 +1,3 @@
# Please do not edit this file manually
# It should be added in your version-control system (e.g., Git)
provider = "postgresql"
# It should be added in your version-control system (i.e. Git)
provider = "postgresql"

View File

@ -54,10 +54,11 @@ model Profile {
startWorkDate DateTime?
currentStatus String?
stripeCustomer String?
premium Boolean @default(false)
plan String?
mailjetContactId String?
stripeCustomer String?
tazapayCustomerId String?
premium Boolean @default(false)
plan String?
mailjetContactId String?
createdAt DateTime @default(now()) @db.Timestamptz(6)
updatedAt DateTime @default(now()) @updatedAt