Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const bookshelf = require("../bookshelf");
  2.  
  3. const Inventory = bookshelf.model("Inventory", {
  4.   tableName: "inventories",
  5.   warehouse: function() {
  6.     return this.belongsTo("Warehouse");
  7.   }
  8. });
  9.  
  10. module.exports = Inventory;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement