Last active
January 10, 2017 22:17
-
-
Save HERRKIN/a77e5a230b6c4407b2735fa146b26df6 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
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