La relation séquentielle n'existe pas

// You need to set freezeTableName to true in the options of the data model 

const YourTable = sequelize.define('YourTable', {
    ...
  }, {
    freezeTableName: true
  });
Ham-Solo