currency.js 253 B

1234567891011
  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. });
  9. module.exports = mongoose.model("currency", CurrencySchema);