32 lines
686 B
JavaScript
32 lines
686 B
JavaScript
import { Sequelize } from 'sequelize';
|
|
|
|
const additionalPricePerPiece = {
|
|
id: {
|
|
type: Sequelize.INTEGER,
|
|
primaryKey: true,
|
|
autoIncrement: true,
|
|
},
|
|
packingConfigurationsFk: {
|
|
type: Sequelize.INTEGER,
|
|
},
|
|
currency: {
|
|
type: Sequelize.STRING,
|
|
defaultValue: 'EUR',
|
|
},
|
|
value: {
|
|
type: Sequelize.DECIMAL(10, 2),
|
|
},
|
|
};
|
|
|
|
export default (sequelize) => {
|
|
const AdditionalPricePerPiece = sequelize.define(
|
|
'FDadditionalPricePerPiece',
|
|
additionalPricePerPiece,
|
|
{
|
|
timestamps: false,
|
|
freezeTableName: true,
|
|
}
|
|
);
|
|
return AdditionalPricePerPiece;
|
|
};
|