| Age | Commit message (Collapse) | Author |
|
|
|
Thanks Tim for the review.
|
|
Thanks Josh for the amazing testing setup and Tim for the review.
|
|
|
|
In the case of multiple-table inheritance models, get_all_related_objects() and
get_all_related_objects_with_model() don't return the auto-created
OneToOneField, but the new examples didn't account for this.
|
|
|
|
Added the AddIndex and RemoveIndex operations to use them in migrations.
Thanks markush, mjtamlyn, timgraham, and charettes for review and advice.
|
|
Thanks Julien Hartmann for the report.
|
|
Complements e2d6e14662d780383e18066a3182155fb5b7747b.
|
|
Previously, empty values were saved as strings.
|
|
|
|
|
|
QuerySet.get_or_create()/update_or_create() defaults.
|
|
|
|
|
|
there's an intermediate table.
|
|
|
|
|
|
|
|
|
|
models' default and base managers.
This deprecates use_for_related_fields.
Old API:
class CustomManager(models.Model):
use_for_related_fields = True
class Model(models.Model):
custom_manager = CustomManager()
New API:
class Model(models.Model):
custom_manager = CustomManager()
class Meta:
base_manager_name = 'custom_manager'
Refs #20932, #25897.
Thanks Carl Meyer for the guidance throughout this work.
Thanks Tim Graham for writing the docs.
|
|
|
|
|
|
|
|
Thanks Tim Graham for completing the initial patch.
|
|
|
|
Didn't touch comments where it wasn't obvious that the code adhered to
the newer standard.
|
|
deferred instance loading.
|
|
|
|
Unused since afe0bb7b13bb8dc4370f32225238012c873b0ee3.
|
|
|
|
Thanks Sai Krishna for the initial patch.
|
|
Thanks Pablo Oubiña for the report.
|
|
Thanks Ian Foote for the initial patch.
|
|
|
|
|
|
|
|
Thanks tomaszn for the patch.
|
|
ensure ordered results.
Thanks Simon Charette for review.
|
|
|
|
|
|
objects.
PostgreSQL support only.
Thanks Vladislav Manchev and alesasnouski for working on the patch.
|
|
|
|
behave.
This partially reverts commit bc7d201bdbaeac14a49f51a9ef292d6312b4c45e.
Thanks Tim for the review.
Refs #25858.
|
|
|
|
|
|
Thanks Luke Crouch for the report and Simon Charette for the review.
|
|
third-party backends.
Thanks Kristof Claes for the initial patch.
|
|
|
|
|