adding the plan post api

This commit is contained in:
Md Sharafat Hassain
2026-04-07 22:32:13 +06:00
parent ba1b0df589
commit bcdb125af1
12 changed files with 345 additions and 1 deletions
+3
View File
@@ -12,6 +12,9 @@ model Account {
lastOtpSendingTime DateTime?
isDeleted Boolean @default(false)
isAccountVerified Boolean @default(false)
isSubscribe Boolean @default(false)
subscriptionId String?
plan Plan? @relation(fields: [subscriptionId], references: [id])
createdAt DateTime @default(now())
updatedAt DateTime @default(now())