Sindbad~EG File Manager

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

module.exports = (sequelize, DataTypes) => {
  const AuctioneerFee = sequelize.define(
    "tblAuctioneerFee",
    {
      auctioneer_fee_id: {
        type: DataTypes.INTEGER,
        primaryKey: true,
        autoIncrement: true,
      },
      auctioneer_id: {
        type: DataTypes.INTEGER,
        allowNull: true,
      },
      name: {
        type: DataTypes.STRING,
        allowNull: true,
      },
      default_amount: {
        type: DataTypes.FLOAT,
        defaultValue: 300,
      },
    },
    {
      timestamps: true,
    }
  );

  return AuctioneerFee;
};

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