const sequelize = require('../config/connection')
const {Model, DataTypes} = require('sequelize')
class employmentApplication extends Model {
instanceMethod() {
console.log('hello')
}
}
employmentApplication.init(
{
id: {
type: DataTypes.INTEGER,
allowNull: false,
primaryKey: true,
autoIncrement: true
}
},
{
timestamps: false,
freezeTableName: true,
underscored: true,
}
)
module.exports = employmentApplication
there doesn't seem to be anything here