You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
672 B

var mongoose = require('mongoose'),
Schema = mongoose.Schema;
/*var tvshowSchema = new Schema({
title: { type: String },
year: { type: Number },
country: { type: String },
poster: { type: String },
seasons: { type: Number },
genre: { type: String, enum:
['Drama', 'Fantasy', 'Sci-Fi', 'Thriller', 'Comedy']
},
summary: { type: String }
});*/
var userSchema = new Schema({
username: { type: String },
password: { type: String },
description: { type: String },
avatar: { type: String },
mail: { type: String },
admin: { type: Boolean }
})
module.exports = mongoose.model('userModel', userSchema);