owner.js 192 B

123456789
  1. const mongoose = require('mongoose')
  2. const Schema = mongoose.Schema
  3. const OwnerSchema = new Schema({
  4. name: String,
  5. about: String
  6. })
  7. module.exports = mongoose.model('Owner', OwnerSchema)