Re: Replicating complex query with two dense_rank() functions using ORM

2020-11-04 Thread Ramon NHB
Hi, In Django queryset you can query PuzzleAnswer, filter by author (assuming that is the user), order_by('created)' and return the created dates only: values_list('created', flat=True). Then take the len() of that list and check the [0] and [-1] entries for first and last date. The rest is dat

Squashmigrations and old dependencies

2020-10-10 Thread Ramon NHB
Hi, I have a working set of squashed migrations for my program that consists of some 15 applications. The old migration set works fine. The newly created squashed migrations work fine. But when I keep them together (as required for deployment), I run into circular dependency problems when runni