Scielize ставит конец названия
var Bar = sequelize.define('Bar', { /* bla */ }, {
// disable the modification of tablenames; By default, sequelize will automatically
// transform all passed model names (first parameter of define) into plural.
// if you don't want that, set the following
freezeTableName: true,
})
Ham-Solo