nogroupby2
Some checks failed
Deploy on push / deploy (push) Failing after 9s

This commit is contained in:
Untone 2024-08-07 15:31:13 +03:00
parent 6a4785cdac
commit c551ca2e70

View File

@ -87,7 +87,7 @@ def query_shouts():
.join(Shout, Shout.id == ShoutTopic.shout)
.subquery()
)
.group_by(Shout.id)
.group_by(Shout.id, Shout.authors, Shout.topics)
.subquery()
)