You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I didn't include this in the initial implementation because I didn't think it is a widely used feature. This should be quite straightforward to implement, essentially as I understand we will need to collect columns from the whole MRO instead of just the model class body.
Thank you for your reply :) I personally don't like mixins, but there it is required because we have big batch of the same fields in the different models. We could avoid this through normalization, but this normalization would force us to use much of joins. It could slow down queries building (for developers) and execution (for database).
This addresses #75 by looking at all columns available in mro, not just topmost model.
It doesn't address the rest of the "mixins" story such as `declared_attr`.
The plugin can't find fields from mixins or abstract models.
Get error:
Same error in this case:
The text was updated successfully, but these errors were encountered: