If you do not follow @queentatiana you should nostr:note1gayjd9g9gpn38xz5f7tr48gju0dl0244czdmek6ysqyaap23f6ns7ghx4f
Thanks for the love here :)
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;
Wow thank you! Just catching up now