Posts by Sousapedro11 • 11 points
2 posts
-
1
votes1
answer30
viewsA: How to resolve error in makemigrations (Django)
I think you are not used to the log (or stacktrace). In the last line of the error, the main error and possible solutions are shown. Basically you defined the ENGINE in a wrong way, sometimes it…
-
-1
votes2
answers22
viewsA: Django queries Related Objects
Another solution would be this: def get_answers(self): return self.respostas.all() Uses the defined related_name.