channeladvisor-localdb
Version:
library that keeps the local inventory database updated
12 lines (11 loc) • 321 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('InventoryItemAttribute', {
Name: S.STRING(32),
Value: S.TEXT('long')
});
};
}).call(this);