owner.js 210 B

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