currency.js 274 B

123456789101112
  1. const mongoose = require("mongoose");
  2. const CurrencySchema = new mongoose.Schema({
  3. location: String,
  4. frontImage: String,
  5. backImage: String,
  6. type: String,
  7. year: Number,
  8. comment: String
  9. });
  10. module.exports = mongoose.model("currency", CurrencySchema);