Skip to content

Instantly share code, notes, and snippets.

@HERRKIN
Last active January 10, 2017 22:17
Show Gist options
  • Save HERRKIN/a77e5a230b6c4407b2735fa146b26df6 to your computer and use it in GitHub Desktop.
Save HERRKIN/a77e5a230b6c4407b2735fa146b26df6 to your computer and use it in GitHub Desktop.
import {Mongo} from 'meteor/mongo'
const Todos = new Mongo.Collection('todos')
const TodosSchema = new SimpleSchema({
text: {
type: String
},
completed: {
type: Boolean
},
owner: {
type: String
}
})
Todos.attachSchema(TodosSchema)
export default Todos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment