Skip to content

Commit

Permalink
Fix birthdays
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsarda committed Feb 1, 2024
1 parent a7ade2f commit 683ea2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/models/birthday.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import mongoose from 'mongoose';

const Schema = new mongoose.Schema({
Guild: { type: String, required: true },
Guild: { type: String, required: false, default: '' },
User: { type: String, required: true },
Birthday: { type: String, required: true },
Date: { type: String, required: true },
Expand Down

0 comments on commit 683ea2f

Please sign in to comment.