Skip to content

Instantly share code, notes, and snippets.

@aleksejkozin
Created December 2, 2021 14:23
Show Gist options
  • Save aleksejkozin/929210f5455e78d5be6bee5a0f6460a1 to your computer and use it in GitHub Desktop.
Save aleksejkozin/929210f5455e78d5be6bee5a0f6460a1 to your computer and use it in GitHub Desktop.
const mongoose = require("mongoose");
const AppSchema = mongoose.Schema({
message: String,
});
module.exports = mongoose.model("App", AppSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment