Skip to content

Instantly share code, notes, and snippets.

@Oscar-zw
Created April 20, 2019 06:03
Show Gist options
  • Save Oscar-zw/5a5ce5c3cda3eb7f90c1472d858a0755 to your computer and use it in GitHub Desktop.
Save Oscar-zw/5a5ce5c3cda3eb7f90c1472d858a0755 to your computer and use it in GitHub Desktop.
fruit schema para Nest.js app
import { Schema } from "mongoose"
export const FruitSchema = new Schema({
name: String,
color: String,
price: Number
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment