Whirra
Quickly develop web applications with SvelteKit and Mongoose.
Discover a wide range of powerful backend tools designed to help you build better, more efficient backends
Ready-to-use database snippets for faster, optimized development
Explore database snippets
let reportSchema = new mongoose.Schema({
email: {
type: String,
required: true,
unique: true,
trim: true,
lowercase: true,
},
message: {
type: String,
required: true,
minlength: 20,
maxlength: 1000,
},
});
//export as You like
Explore mongoose schemas