Skip to content

Instantly share code, notes, and snippets.

@yvesbou
Created February 18, 2022 09:35
Show Gist options
  • Save yvesbou/6f7ddc387de0439fff46e5d6b70e5e90 to your computer and use it in GitHub Desktop.
Save yvesbou/6f7ddc387de0439fff46e5d6b70e5e90 to your computer and use it in GitHub Desktop.
const mongoose = require("mongoose");
const { Schema } = mongoose;
const erc20CoinSchema = new Schema({
name: {
type: String,
trim: true
}
});
const ERC20Coin = mongoose.model("ERC20Coin", erc20CoinSchema);
module.exports = { ERC20Coin };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment