Created
December 31, 2015 18:31
-
-
Save regissoares/df0cde84cd61290182f8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var tiposDeApresentacoes = require('valueObjects').tiposDeApresentacoes; | |
var apresentacaoSchema = new Schema({ | |
tipo: [{ type: String, enum: tiposDeApresentacoes }], | |
titulo: { type: String, max: 80 }, | |
descricao: { type: String, max: 200 } | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment