Sindbad~EG File Manager

Current Path : /home/infinitibizsol/.trash/models.3/
Upload File :
Current File : /home/infinitibizsol/.trash/models.3/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;
};

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists