| Age | Commit message (Collapse) | Author |
|
django.db.migrations.utils.
|
|
|
|
parent model with mixed case app label.
|
|
This allows the removal of its O(n) .get_field_by_name method and many
other awkward access patterns.
While fields were initially stored in a list to preserve the initial
model definiton field ordering the auto-detector doesn't take field
ordering into account and no operations exists to reorder fields of a
model.
This makes the preservation of the field ordering completely superflous
because field reorganization after the creation of the model state
wouldn't be taken into account.
|
|
This moves all the field referencing resolution methods to shared
functions instead of duplicating efforts amongst state_forwards and
references methods.
|
|
ModelTuple made handling of app_label=None easier but it isn't necessary
anymore.
|
|
|
|
|
|
constraint" crash on MySQL with a sequence of AlterField or RenameField operations.
Regression in 45ded053b1f4320284aa5dac63052f6d1baefea9.
|