summaryrefslogtreecommitdiff
path: root/django/db/migrations/executor.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-2/+2
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-22/+47
* Fixed #23273 -- Avoided creation of django_migrations table when there are no...Jacob Walls2021-12-301-2/+6
* Fixed #24900 -- Allowed migrating backward to squashed migrations.Jacob Walls2021-08-301-0/+9
* Refs #29898 -- Changed ProjectState.real_apps to set.Mariusz Felisiak2021-08-111-1/+1
* Fixed #25255 -- Recorded unapplied squashed migrations.Jacob Walls2021-06-081-3/+2
* Fixed #32374 -- Stopped recording migration application before deferred SQL.Simon Charette2021-01-211-2/+3
* Refs #31318 -- Moved MigrationExecutor.collect_sql() to MigrationLoader.David Wobrock2020-03-091-18/+0
* Fixed #31233 -- Closed database connections and cursors after use.Jon Dufresne2020-02-061-4/+2
* Fixed #29808 -- Fixed initial migration detection when identifiers are case-i...Hasan Ramezani2019-11-151-3/+17
* Refs #29808 -- Optimized MigrationExecutor.detect_soft_applied().Hasan Ramezani2019-11-151-8/+10
* Refs #30186 -- Changed MigrationRecorder.applied_migrations() to return a dict.Tim Schilling2019-03-071-5/+5
* Fixed #29721 -- Ensured migrations are applied and recorded atomically.Sanyam Khurana2018-10-241-4/+11
* Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne2017-11-281-1/+2
* Fixed #27858 -- Prevented read-only management commands from creating the dja...Marti Raudsepp2017-06-191-0/+4
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-17/+13
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #27100 -- Included already applied migration changes in the pre-migrate...Simon Charette2016-08-241-26/+27
* Fixed #27044 -- Included already applied migration changes in the post-migrat...Simon Charette2016-08-241-2/+8
* Fixed #26647 -- Included the state of all applied migrations when migrating f...Simon Charette2016-05-261-2/+3
* Fixed #24100 -- Made the migration signals dispatch its plan and apps.Simon Charette2016-05-151-7/+45
* Fixed #26117 -- Consulted database routers in initial migration detection.Scott Sexton2016-02-251-3/+16
* Fixed #25833 -- Added support for non-atomic migrations.Pankrat2016-02-051-3/+3
* Fixed #25922 -- Fixed migrate --fake-initial detection of many-to-many tables.Tim Graham2015-12-191-4/+17
* Fixed #24743, #24745 -- Optimized migration plan handlingMarkus Holtermann2015-09-191-27/+77
* Fixed #24375 -- Added Migration.initial attributeAndrei Kulakov2015-07-131-9/+32
* Cleaned up docstring style, per Tim Graham review.Carl Meyer2015-06-031-1/+0
* Refs #24628 -- Added a second test and a docstring comment to avoid regression.Carl Meyer2015-06-031-0/+8
* Fixed #24628 -- Fixed applied status for squashed migrations.Carl Meyer2015-06-021-0/+11
* Refs #24554 -- Prevented rendering of unused migrationsMarkus Holtermann2015-04-011-0/+9
* Fixed #24554 -- Sped up migrations by rendering initial apps when they are fi...Markus Holtermann2015-04-011-7/+14
* Fixed #24366 -- Optimized traversal of large migration dependency graphs.Marten Kenbeek2015-02-231-1/+1
* Fixed #24184 -- Prevented automatic soft-apply of migrationsMarkus Holtermann2015-02-131-8/+9
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+2
* Fixed #24129 -- Added indicator that migrations are rendering the initial stateMarkus Holtermann2015-01-121-0/+4
* Fixed #24123 -- Used all available migrations to generate the initial migrati...Markus Holtermann2015-01-121-7/+25
* Fixed #23745 -- Reused states as much as possible in migrationsClaude Paroz2015-01-021-11/+13
* Passed around the state between migrationsClaude Paroz2015-01-021-9/+16
* Replaced migration state render() by apps cached propertyClaude Paroz2015-01-021-1/+1
* Fixed #23410 -- Avoided unnecessary rollbacks in related apps when migrating ...Carl Meyer2014-11-191-6/+11
* Revert "Fixed #23474 -- Prevented migrating backwards from unapplying the wro...Tim Graham2014-09-241-9/+5
* Called table_names instead of get_table_list in migrationsClaude Paroz2014-09-231-1/+1
* Fixed #23474 -- Prevented migrating backwards from unapplying the wrong migra...valtron2014-09-151-5/+9
* Fix soft_applied in a way that doesn't break testsAndrew Godwin2014-07-291-2/+4
* Make detect_soft_applied exit correctly on non-create migrationsAndrew Godwin2014-07-291-0/+2
* Fixed #23093: soft application detection for swapped modelsAndrew Godwin2014-07-251-0/+5
* Fixed #22881 -- Better soft_applied migration detectionChris Beaven2014-06-231-3/+5
* Added a bunch of missing unicode_literalsClaude Paroz2014-05-061-0/+2
* Fixed #22485: Include all unmigrated apps in project state by default.Andrew Godwin2014-04-301-4/+4