summaryrefslogtreecommitdiff
path: root/django/db/migrations/executor.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
| | | | Thanks Piotr Kasprzyk for help with the patch.
* Fix soft-apply detection of migrations with dependenciesAndrew Godwin2014-01-241-1/+3
|
* Used app_label instead of appname.Aymeric Augustin2013-12-281-1/+1
| | | | | | | 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.
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-2/+2
| | | | | | Also renamed app_cache to apps and "app cache" to "app registry". Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
* Include deferred SQL in sqlmigrate outputAndrew Godwin2013-11-271-1/+1
|
* Auto-apply initial migrations if their tables exist already.Andrew Godwin2013-10-301-8/+29
|
* Fix migration planner to fully understand squashed migrations. And test.Andrew Godwin2013-10-231-4/+15
|
* Make sqlmigrate ignore the RunPython operationAndrew Godwin2013-09-251-2/+2
|
* Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin2013-09-061-0/+16
|
* Fix weird planning issues when already fully migrated.Andrew Godwin2013-08-111-4/+9
|
* Add --fake option to migrateAndrew Godwin2013-07-261-11/+13
|
* Make migrate command recognise prefixes and 'zero'.Andrew Godwin2013-07-221-1/+9
|
* Initial stab at a migrate command, it's probably quite a way off.Andrew Godwin2013-06-071-3/+14
|
* Remove debug printsAndrew Godwin2013-05-301-4/+0
|
* Add an Executor for end-to-end runningAndrew Godwin2013-05-301-0/+68