const mongoose = require('mongoose'); const Schema = mongoose.Schema; const ObjectId = Schema.ObjectId; const User = new Schema({ userID: { type: String }, firstName: { type: String }, lastName: { type: String }, phoneNumber: { type: String }, username: { type: String }, password: { type: String }, dateCreated: { type: Date, default: Date.now } });