Skip to content

Instantly share code, notes, and snippets.

@yemmyharry
Created May 11, 2021 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yemmyharry/b69cc8deace9f6816a337f45dfda0d4f to your computer and use it in GitHub Desktop.
Save yemmyharry/b69cc8deace9f6816a337f45dfda0d4f to your computer and use it in GitHub Desktop.
schema for image tutorial
import mongoose from "mongoose";
const postSchema = mongoose.Schema({
myFile: String,
});
const Post = mongoose.model("Post", postSchema);
export default Post;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment