I have two tables: Books and Articles with a many-to-many relationship between them. Joining table is BookArticles.
models/books.js
module.exports =
delete BookArticles model and update relation to:
m.Book.hasMany(m.Article, {through: 'book_articles'}); m.Article.hasMany(m.Books, {through: 'book_articles'});