currency.js 311 B

1234567891011121314
  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. value: Number
  11. });
  12. module.exports = mongoose.model("currency", CurrencySchema);