Advertisement
Guest User

Untitled

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