User.js 206 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 const { model, Schema } = require("mongoose"); const userSchema = new Schema({ username: String, password: String, email: String, createdAt: String }); module.exports = model("User", userSchema);