customer-cli-test
Version:
Customer management CLI
13 lines (10 loc) • 300 B
JavaScript
const mongoose = require("mongoose");
// Customer Schema
const customerSchema = mongoose.Schema({
firstname: { type: String },
lastname: { type: String },
phone: { type: String },
email: { type: String }
});
// Define and export
module.exports = mongoose.model("Customer", customerSchema);