Thanks for the love here :)
If you do not follow nostr:npub19sdruy3ta6cy6g5ptajshlk4j7ly6tndw83sz0h694v5dr90dnusxal7x3 you should
nostr:note1gayjd9g9gpn38xz5f7tr48gju0dl0244czdmek6ysqyaap23f6ns7ghx4f
Discussion
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var UserSchema = new Schema({
name: {type: String, required: true},
email: {type: String, unique: true, required: true},
password: {type: String, required: true},
address: {type: String, required: true}
});
var User = mongoose.model('User', UserSchema);
module.exports = User;