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