Sindbad~EG File Manager

Current Path : /home/infinitibizsol/.trash/models.3/
Upload File :
Current File : /home/infinitibizsol/.trash/models.3/UserSubscriptionAuctioneer.js

module.exports = (sequelize, DataTypes) => {
  const UserSubAuctioneer = sequelize.define(
    "tblUserSubAuctioneer",
    {
      subscription_id: {
        type: DataTypes.INTEGER,
        primaryKey: true,
        autoIncrement: true,
      },
      user_id: {
        type: DataTypes.INTEGER,
        allowNull: true,
      },
      auctioneer_id: {
        type: DataTypes.INTEGER,
        allowNull: true,
      },
      start_date: { type: DataTypes.DATE, allowNull: true },
      expiration_date: { type: DataTypes.DATE, allowNull: true },
    },
    {
      timestamps: true,
    }
  );

  return UserSubAuctioneer;
};

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