// See http://docs.sequelizejs.com/en/latest/docs/models-definition/ // for more of what you can do here. const Sequelize = require('sequelize'); const DataTypes = Sequelize.DataTypes; module.exports = function (app) { const sequelizeClient = app.get('sequelizeClient'); const posts = sequelizeClient.define('posts', { userId: { type: DataTypes.INTEGER, allowNull: false }, text: { type: DataTypes.STRING, allowNull: false } }, { hooks: { beforeCount(options) { options.raw = true; } } }); // eslint-disable-next-line no-unused-vars posts.associate = function (models) { // Define associations here // See http://docs.sequelizejs.com/en/latest/docs/associations/ }; return posts; };