Support 3D pivot table #4528
YosefSchwartz
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thanks for the greatest ORM!
In my case, I have 3 tables that I need use one pivot table to connect them toghether.
I have User, that can have some Applications, and for each Application exist Permission.
So I have:
Users:
id, name
Application:
id, name
Permission:
id, name
and pivot table; users_applications_permissions:
id, user_id, application_id, permission_id.
I don't know how to implement it with the existing decorators, but if it does not exist, it can be very helpful.
Beta Was this translation helpful? Give feedback.
All reactions