Skip to content

Instantly share code, notes, and snippets.

@vdeturckheim
Created March 10, 2016 21:12
Show Gist options
  • Save vdeturckheim/5482592d36d4265c96a1 to your computer and use it in GitHub Desktop.
Save vdeturckheim/5482592d36d4265c96a1 to your computer and use it in GitHub Desktop.
const Thinky = require('thinky')();
const Type = Thinky.type;
// create the model for messages
const Message = Thinky.createModel('Message', {
username: Type.string(),
message: Type.string()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment