module.exports = (mongoose, Schema) => {
  return mongoose.model('{{modelName}}', new Schema({
    {{#each model}}
    {{this.name}}: {
      type: {{this.type}},
    },
    {{/each}}
  }, {
    timestamps: true,
  }))
}
