Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/migrations/migrations_test_apps
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #24755 -- Hid operations from dependency apps when ↵Markus Holtermann2015-08-185-0/+71
| | | | | | merging migrations Thanks Carl Meyer for the report and Tim Graham for the review.
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-288-10/+10
| | | | on_delete for ForeignKey/OneToOneField
* Refs #24264 -- Added failing test case for updating a FK ↵Markus Holtermann2015-02-168-0/+62
| | | | | | | | | | when changing a PK 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.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-0611-10/+11
|
* Fixed #24123 -- Used all available migrations to ↵Markus Holtermann2015-01-1219-0/+249
| | | | | | generate the initial migration state Thanks Collin Anderson for the input when creating the patch and Tim Graham for the review.
* Fixed #22791 -- Invoke interactive questioner only for ↵Huu Nguyen2014-07-146-0/+76
| | | | | | conflicts in specified apps. Thanks bendavis78 for the report and Tim Graham for the review.
* Fix previous commit on python 2Andrew Godwin2014-06-171-0/+0
|
* Fixed #22577: Python 3 broke on non-module migrations ↵Víðir Valberg Guðmundsson2014-06-171-0/+0
| | | | directory
* Fixed #22823 (and partly #22563) - FKs from unmigrated ↵Andrew Godwin2014-06-1210-0/+73
| | | | | | apps breaking state. Thanks to bendavis78 for the test and diagnostic work.
* Removed superfluous models.py files.Aymeric Augustin2013-12-171-0/+0
| | | | | | | 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.
* Fixed #21283 -- Added support for migrations if models ↵Loic Bistuer2013-10-195-0/+0
is a package. Thanks Markus Holtermann for the report.