synt_backend
Version:
Synt light-weight node backend service
27 lines (26 loc) • 689 B
JavaScript
const { Model } = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class PurchaseAllocation extends Model {
/**
* Helper method for defining associations.
* This method is not a part of Sequelize lifecycle.
* The `models/index` file will call this method automatically.
*/
static associate(models) {
// define association here
PurchaseAllocation.belongsTo(models.PurchaseEntry);
PurchaseAllocation.belongsTo(models.Lot);
}
}
PurchaseAllocation.init(
{
amount: DataTypes.DECIMAL,
},
{
sequelize,
modelName: "PurchaseAllocation",
}
);
return PurchaseAllocation;
};
;