Created
August 11, 2017 20:02
-
-
Save Horaddrim/06fd21bfdd3c35ce8c9b4a8761b76c5a to your computer and use it in GitHub Desktop.
:D
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mongoose = require('mongoose'); | |
let Schema = mongoose.Schema; | |
const PatiosSchema = new Schema({ | |
IdPatio: Number, | |
NomPatio: String, | |
IndExclusao: String | |
}); | |
const patiosSchema = mongoose.model('Block',PatiosSchema); | |
module.exports = patiosSchema; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment