channeladvisor-localdb
Version:
library that keeps the local inventory database updated
23 lines (22 loc) • 828 B
JavaScript
// Generated by LiveScript 1.3.1
(function(){
var S, define, out$ = typeof exports != 'undefined' && exports || this;
S = require('sequelize');
out$.define = define = function(){
return this.db.define('InventoryItemQuantity', {
Available: S.INTEGER.UNSIGNED,
OpenAllocated: S.INTEGER.UNSIGNED,
OpenUnallocated: S.INTEGER.UNSIGNED,
PendingCheckout: S.INTEGER.UNSIGNED,
PendingPayment: S.INTEGER.UNSIGNED,
PendingShipment: S.INTEGER.UNSIGNED,
Total: S.INTEGER.UNSIGNED,
OpenAllocatedPooled: S.INTEGER.UNSIGNED,
OpenUnallocatedPooled: S.INTEGER.UNSIGNED,
PendingCheckoutPooled: S.INTEGER.UNSIGNED,
PendingPaymentPooled: S.INTEGER.UNSIGNED,
PendingShipmentPooled: S.INTEGER.UNSIGNED,
TotalPooled: S.INTEGER.UNSIGNED
});
};
}).call(this);