Skip to content

Commit

Permalink
add hasTxt field in Plan schema
Browse files Browse the repository at this point in the history
  • Loading branch information
yash22arora committed May 23, 2024
1 parent 6497765 commit 6789b6c
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 @@ -6,6 +6,7 @@ const planSchema = mongoose.Schema({
domainID: { type: String, required: true, ref: "Domain" },
planType: { type: String, required: true },
planLabel: { type: String, required: true },
hasTxtRecord: { type: Boolean, required: true, default: false },
expiry: { type: Date, required: true },
stripeSubscriptionId: { type: String, required: true, default: "x" },
records: { type: Array, default: [] },
Expand Down

0 comments on commit 6789b6c

Please sign in to comment.