Skip to content

Instantly share code, notes, and snippets.

@konami12
Created July 3, 2020 19:36
Show Gist options
  • Save konami12/21560c7089acb44e68f676669d4d233c to your computer and use it in GitHub Desktop.
Save konami12/21560c7089acb44e68f676669d4d233c to your computer and use it in GitHub Desktop.
Schema para mongoose
//importamos las dependencia mongoose
const { Schema, model } = require("mongoose");
// Segenera el esquema base
const SCHEMA = new Schema({
name: { type: String, require: true },
lastName: String,
age: Number,
random: Number,
});
// exportamon el schema generado
exports.agenda = model("agenda", SCHEMA);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment