Sindbad~EG File Manager

Current Path : /home/infinitibizsol/.trash/models.1/
Upload File :
Current File : /home/infinitibizsol/.trash/models.1/Auction.js

module.exports = (sequelize, DataTypes) => {
  const Auction = sequelize.define(
    "tblAuction",
    {
      auction_id: {
        type: DataTypes.INTEGER,
        primaryKey: true,
        autoIncrement: true,
      },
      name: {
        type: DataTypes.STRING,
        allowNull: true,
      },
      location: {
        type: DataTypes.STRING,
        allowNull: true,
      },
    },
    {
      timestamps: false,
    }
  );

  return Auction;
};

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