Skip to content

Instantly share code, notes, and snippets.

@wojciech-bilicki
Last active April 12, 2018 07:31
Show Gist options
  • Save wojciech-bilicki/c02ac3bb29c92207b03db19818053628 to your computer and use it in GitHub Desktop.
Save wojciech-bilicki/c02ac3bb29c92207b03db19818053628 to your computer and use it in GitHub Desktop.
import mongoose from mongoose;
import uuid from 'node-uuid';
const schema = mongoose.Schema;
const authorSchema = new schema({
id: {type: String, default: uuid.v1},
name: String,
age: Number,
Books: [String]
})
const model = mongoose.model('author', authorSchema)
export default model
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment