summaryrefslogtreecommitdiff
path: root/django/db/migrations/executor.py
AgeCommit message (Collapse)Author
2014-07-29Make detect_soft_applied exit correctly on non-create migrationsAndrew Godwin
2014-07-25Fixed #23093: soft application detection for swapped modelsAndrew Godwin
2014-06-23Fixed #22881 -- Better soft_applied migration detectionChris Beaven
2014-05-06Added a bunch of missing unicode_literalsClaude Paroz
Refs #22564.
2014-04-30Fixed #22485: Include all unmigrated apps in project state by default.Andrew Godwin
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
Thanks Piotr Kasprzyk for help with the patch.
2014-01-24Fix soft-apply detection of migrations with dependenciesAndrew Godwin
2013-12-28Used app_label instead of appname.Aymeric Augustin
The last component of the dotted path to the application module is consistently referenced as the application "label". For instance it's AppConfig.label. appname could be confused with AppConfig.name, which is the full dotted path.
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
Also renamed app_cache to apps and "app cache" to "app registry". Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
2013-11-27Include deferred SQL in sqlmigrate outputAndrew Godwin
2013-10-30Auto-apply initial migrations if their tables exist already.Andrew Godwin
2013-10-23Fix migration planner to fully understand squashed migrations. And test.Andrew Godwin
2013-09-25Make sqlmigrate ignore the RunPython operationAndrew Godwin
2013-09-06Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin
2013-08-11Fix weird planning issues when already fully migrated.Andrew Godwin
2013-07-26Add --fake option to migrateAndrew Godwin
2013-07-22Make migrate command recognise prefixes and 'zero'.Andrew Godwin
2013-06-07Initial stab at a migrate command, it's probably quite a way off.Andrew Godwin
2013-05-30Remove debug printsAndrew Godwin
2013-05-30Add an Executor for end-to-end runningAndrew Godwin