currency.js 337 B

123456789101112131415
  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. name: String,
  10. currencyCode: String,
  11. value: Number
  12. });
  13. module.exports = mongoose.model("currency", CurrencySchema);