Ihor

Results 4 issues of Ihor

While working on Django projects, I typically use Docker only for deployment/CI/CD but locally using Docker slows down the development(Docker for Mac is terribly slow), and it is way more...

Both Property and Room are SafeDelete models with corresponding querysets and managers. `Property.objects.annotate(bc=Count('rooms', distinct=True))` generates the following code. ``` SELECT "property_property"."id", COUNT(DISTINCT "property_room"."id") AS "bc" FROM "property_property" LEFT OUTER JOIN...

enhancement

I have tested this on silk 4.2.0, 4.3.0, and Django 3.0.4 `SELECT "silk_request"."id", "silk_request"."path", "silk_request"."query_params", "silk_request"."raw_body", "silk_request"."body", "silk_request"."method", "silk_request"."start_time", "silk_request"."view_name", "silk_request"."end_time", "silk_request"."time_taken", "silk_request"."encoded_headers", "silk_request"."meta_time", "silk_request"."meta_num_queries", "silk_request"."meta_time_spent_queries", "silk_request"."pyprofile", "silk_request"."prof_file", "silk_request"."num_sql_queries", COUNT("silk_sqlquery"."id")...

bug

I recently updated my project from **Django 3.2 to Django 5.0**. One particular issue I encountered was related to `factory_boy`. Here’s what happened: #### The Problem I had the following...