Current Path : /home/infinitibizsol/.trash/models.1/ |
Current File : /home/infinitibizsol/.trash/models.1/AuctionLane.js |
module.exports = (sequelize, DataTypes) => { const AuctionLane = sequelize.define( "tblAuctionLane", { lane_id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true, }, name: { type: DataTypes.STRING, allowNull: true, }, auction_id: { type: DataTypes.INTEGER, allowNull: true, }, auctioneer_id: { type: DataTypes.INTEGER, allowNull: true, }, }, { timestamps: false, } ); return AuctionLane; };