Skip to content

Instantly share code, notes, and snippets.

@joepie91
Created June 18, 2014 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joepie91/1021886303cc22200e9c to your computer and use it in GitHub Desktop.
Save joepie91/1021886303cc22200e9c to your computer and use it in GitHub Desktop.
// models/user.js
module.exports = function(bookshelf) {
return bookshelf.define(/* blah blah blah */);
}
// app.js
var bookshelf = /* connection stuff goes here */
var User = require("models/user")(bookshelf)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment