/
home
/
infinitibizsol
/
.trash
/
models.3
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/models.3/VehicleRunFee.js
module.exports = (sequelize, DataTypes) => { const VehicleRunFee = sequelize.define( "tblVehicleRunFee", { vehicle_run_fee_id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true, }, vehicle_run_id: { type: DataTypes.INTEGER, allowNull: true, // or false, based on your requirement }, auctioneer_fee_id: { type: DataTypes.INTEGER, allowNull: true, }, fee_amount: { type: DataTypes.FLOAT, allowNull: true, }, }, { timestamps: true, } ); return VehicleRunFee; };
Copyright ©2k19 -
Hexid
|
Tex7ure