Skip to content
Advertisement

Many-to-many in same model

I need to use a many-to-many relationship to one model. I have an Article model, and I want to make a function so that other articles, typically recommended, can be attached to one article.

This is the function, it should work correctly.

JavaScript

I have a question about how to create a table of relations in the database and in the model correctly, I did it like this, but even the migration does not work for me

Model

JavaScript

db

JavaScript

error in migration

JavaScript

Advertisement

Answer

What are you trying to do should be fairly simple , it’s like a following system where each user is related to many users ( same model ) but also same table !

you are here trying to create another table which i consider unnecessary , you only need two tables

articles & recommendations

and the recommendation tabel will act as a pivot table for articles with its self thus creating a many to many relationship with the same table .

Article.php
JavaScript

create_recommendations_table.php

JavaScript

usage

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement