[web] profile: add Tazapay customer ID field
This commit is contained in:
parent
71f2b14726
commit
78d3b40fae
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "Profile" ADD COLUMN "tazapayCustomerId" TEXT;
|
||||
|
|
@ -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"
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue