summaryrefslogtreecommitdiff
path: root/django/db/migrations/loader.py
AgeCommit message (Expand)Author
2015-10-29[1.9.x] Fixed #25627, refs #25618 -- Removed detection of south migrations in...Tim Graham
2015-10-28[1.9.x] Fixed #25618 -- Added a helpful error message when Django & south mig...Tim Graham
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-09-12Fixed #24919 -- Allowed disabling of migrations on a per app basisMarkus Holtermann
2015-06-02Fixed #24628 -- Fixed applied status for squashed migrations.Carl Meyer
2015-06-02Fixed #24895 -- Fixed loading a pair of squashed migrations with a dependency.Carl Meyer
2015-05-25Fixed #24848 -- Fixed ValueError for faulty migrations module.Marten Kenbeek
2015-05-02Moved migration exception classes to shared moduleMarkus Holtermann
2015-02-07Revert "Fixed #24075 -- Prevented running post_migrate signals when unapplyin...Markus Holtermann
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-20Fixed typos in code comments.Adam Taylor
2015-01-14Fixed #24075 -- Prevented running post_migrate signals when unapplying initia...Markus Holtermann
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-10-30Fixed #23733 -- Fixed squashing migrations that depend on multiple apps.twidi
2014-10-30Fixed #23556 -- Raised a more meaningful error message when migrations refer ...Markus Holtermann
2014-10-29Limited lines to 119 characters in django/{contrib,db}.Berker Peksag
2014-10-24Fixed #23618 -- Allowed apps with no models to still have migrationsClaude Paroz
2014-09-05Revert "Fixed #23384 -- Allowed overriding part of a dictionary-type setting"Claude Paroz
2014-08-30Fixed #23384 -- Allowed overriding part of a dictionary-type settingClaude Paroz
2014-08-23Fixed #23341 -- Added migration name to nonexistent migration error in makemi...Raffaele Salmaso
2014-08-08Don't treat .pyc/pyo files as migrations. Refs #23237 among others.Andrew Godwin
2014-07-25Restore support for reading __latest__ for compatabilityAndrew Godwin
2014-07-22Fixed #23071 -- Use last migration's name in dependency to other appJeroen Dekkers
2014-06-17Fixed #22861: Internal migrations done first so __first__ worksAndrew Godwin
2014-06-17Fix __latest__ to actually resolve to the latest migrationAndrew Godwin
2014-06-16Fixed #22848: Ignore no-migrations errors during makemigrations onlyAndrew Godwin
2014-06-15Fixed #22563: Added migration to admin, fixed a few more loader issues.Andrew Godwin
2014-06-15Improve error message for missing migrations in an appAndrew Godwin
2014-05-29Implement Migration.run_beforeChris Beaven
2014-05-20Revert "Fixed #22645: Allow apps with no models module to still have migrations"Andrew Godwin
2014-05-20Fixed #22645: Allow apps with no models module to still have migrationsAndrew Godwin
2014-05-08Fixed #22325: Ignore __first__ dependencies to your own appAndrew Godwin
2014-05-06Fixed #22576: Ensure makemigrations doesn't touch the database.Andrew Godwin
2014-05-06Added a bunch of missing unicode_literalsClaude Paroz
2014-04-30flake8 fixes.Tim Graham
2014-04-30Fixed #22485: Include all unmigrated apps in project state by default.Andrew Godwin
2014-03-08Fix bad conflict detection during makemigrationsAndrew Godwin
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-02-09Fixed #21968: Bad detection of old-style apps to add initial migrationAndrew Godwin
2014-01-19Implement swappable model support for migrationsAndrew Godwin
2014-01-08Fixed #21142: Dependency failures on unmigrated apps.Andrew Godwin
2013-12-30Removed the only_with_models_module argument of get_model[s].Aymeric Augustin
2013-12-27Created a constant for the migrations module name.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Made it possible to create apps without a models module.Aymeric Augustin
2013-12-17Deprecated get_apps().Aymeric Augustin
2013-12-17Deprecated get_app_package, get_app_path and get_app_paths.Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin