Skip to content

Commit

Permalink
Add Plan Label to Plan Model
Browse files Browse the repository at this point in the history
  • Loading branch information
yash22arora committed May 23, 2024
1 parent d65f85c commit 6497765
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/api/models/plan.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const planSchema = mongoose.Schema({
ownerID: { type: String, required: true, ref: "User" },
domainID: { type: String, required: true, ref: "Domain" },
planType: { type: String, required: true },
planLabel: { type: String, required: true },
expiry: { type: Date, required: true },
stripeSubscriptionId: { type: String, required: true, default: "x" },
records: { type: Array, default: [] },
Expand Down

0 comments on commit 6497765

Please sign in to comment.