@bash-app/bash-common 30.59.3 → 30.59.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +8 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1151,6 +1151,14 @@ model User {
|
|
|
1151
1151
|
// Artists/performers the user wants to see
|
|
1152
1152
|
artistsToSee String[] @default([])
|
|
1153
1153
|
|
|
1154
|
+
// Membership system fields
|
|
1155
|
+
membershipTier String? // Guest, Creator, Pro, Elite, Legend
|
|
1156
|
+
membershipExpiresAt DateTime?
|
|
1157
|
+
membershipAutoRenew Boolean @default(false)
|
|
1158
|
+
membershipBillingInterval String? // Monthly, Yearly
|
|
1159
|
+
membershipLastBilledAt DateTime?
|
|
1160
|
+
membershipFeaturedEventsUsed Int @default(0)
|
|
1161
|
+
membershipStripeSubscriptionId String? @unique
|
|
1154
1162
|
// Blog relations
|
|
1155
1163
|
blogPosts BlogPost[] @relation("BlogAuthor")
|
|
1156
1164
|
blogComments BlogComment[] @relation("BlogCommentAuthor")
|