summaryrefslogtreecommitdiff
path: root/tests/migrations/migrations_test_apps
AgeCommit message (Collapse)Author
2026-03-08Fixed #12529 -- Fixed migrate --run-syncdb crash for existing model with ↵Mariusz Felisiak
truncated db_table names.
2025-05-12Fixed #33174 -- Fixed migrations crash for model inheriting from Generic[T].Thibaut Decombe
2024-09-03Fixed #35724 -- Tested migration commands handling of distributed namespace ↵Jacob Walls
packages. Also increased coverage of module_loading.py.
2023-02-01Refs #33476 -- Applied Black's 2023 stable style.David Smith
Black 23.1.0 is released which, as the first release of the year, introduces the 2023 stable style. This incorporates most of last year's preview style. https://github.com/psf/black/releases/tag/23.1.0
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2018-11-14Fixed #25884 -- Fixed migrate --run-syncdb when specifying an app label.Sarah Guermond
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-11-29Fixed #27507 -- Used SchemaEditor.execute() to run deferred_sql in migrate's ↵Lex Berezhny
sync_apps().
2016-05-26Fixed #26647 -- Included the state of all applied migrations when migrating ↵Simon Charette
forward. Thanks Jasper Maes for the detailed report.
2015-08-18Fixed #24755 -- Hid operations from dependency apps when merging migrationsMarkus Holtermann
Thanks Carl Meyer for the report and Tim Graham for the review.
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-02-16Refs #24264 -- Added failing test case for updating a FK when changing a PKMarkus Holtermann
When the primary key column is altered, foreign keys of referencing models must be aware of a possible data type change as well and thus need to be re-rendered. Thanks Tim Graham for the report.
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-12Fixed #24123 -- Used all available migrations to generate the initial ↵Markus Holtermann
migration state Thanks Collin Anderson for the input when creating the patch and Tim Graham for the review.
2014-07-14Fixed #22791 -- Invoke interactive questioner only for conflicts in ↵Huu Nguyen
specified apps. Thanks bendavis78 for the report and Tim Graham for the review.
2014-06-17Fix previous commit on python 2Andrew Godwin
2014-06-17Fixed #22577: Python 3 broke on non-module migrations directoryVíðir Valberg Guðmundsson
2014-06-12Fixed #22823 (and partly #22563) - FKs from unmigrated apps breaking state.Andrew Godwin
Thanks to bendavis78 for the test and diagnostic work.
2013-12-17Removed superfluous models.py files.Aymeric Augustin
Added comments in the three empty models.py files that are still needed. Adjusted the test runner to add applications corresponding to test labels to INSTALLED_APPS even when they don't have a models module.
2013-10-19Fixed #21283 -- Added support for migrations if models is a package.Loic Bistuer
Thanks Markus Holtermann for the report.