channeladvisor-localdb
Version:
library that keeps the local inventory database updated
17 lines (16 loc) • 464 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('InventoryItemPrice', {
Cost: S.FLOAT,
RetailPrice: S.FLOAT,
StartingPrice: S.FLOAT,
ReservePrice: S.FLOAT,
TakeItPrice: S.FLOAT,
SecondChanceOfferPrice: S.FLOAT,
StorePrice: S.FLOAT
});
};
}).call(this);