summaryrefslogtreecommitdiff
path: root/django/core/management/commands/migrate.py
AgeCommit message (Expand)Author
2019-05-08Used time.monotonic() instead of time.time() where applicable.Przemysław Suliga
2019-02-13Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
2019-02-06Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope
2018-11-21Fixed #29949 -- Refactored db introspection identifier converters.Mariusz Felisiak
2018-11-14Fixed #25884 -- Fixed migrate --run-syncdb when specifying an app label.Sarah Guermond
2018-09-19Refs #29198 -- Fixed migrate --plan crash if RunSQL uses a list or tuple.Tim Graham
2018-08-22Refs #29654 -- Replaced three dots with ellipsis character in output strings.Claude Paroz
2018-08-03Fixed #29198 -- Added migrate --plan option.Calvin DeBoer
2018-07-02Removed parser.add_arguments() arguments that match the defaults.Claude Paroz
2018-06-20Fixed #29506 -- Added validation for migrate's app_label option.Claude Paroz
2018-05-13Fixed #17379 -- Removed management commands deactivation of the locale.Claude Paroz
2017-12-28Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-04-01Removed implicit default store_true/false argparse args.Jon Dufresne
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Fixed #27666 -- Delayed rendering of recursivly related models in migration o...Markus Holtermann
2016-12-28Fixed #27631 -- Prevented execution of transactional DDL statements when unsu...Simon Charette
2016-11-29Fixed #27507 -- Used SchemaEditor.execute() to run deferred_sql in migrate's ...Lex Berezhny
2016-08-24Fixed #27100 -- Included already applied migration changes in the pre-migrate...Simon Charette
2016-08-24Fixed #27044 -- Included already applied migration changes in the post-migrat...Simon Charette
2016-06-16Fixed flake8 2.6 warnings.Tim Graham
2016-05-15Fixed #24100 -- Made the migration signals dispatch its plan and apps.Simon Charette
2016-04-12Fixed #26492 -- Fixed "maximum recursion depth exceeded" migrate error.Berker Peksag
2016-04-08Refs #26351 -- Added check hook to support database-related checksClaude Paroz
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-05Fixed #25850 -- Made migrate/makemigrations error on inconsistent history.Attila Tovt
2016-03-05Refs #26315 -- Cleaned up argparse options in commands.Jon Dufresne
2016-01-29Fixed #26150 -- Sorted app_labels in migrate command outputMarkus Holtermann
2015-11-18Removed redundant termcolors.Tim Graham
2015-09-23Refs #23359 -- Removed the migrate --list option per deprecation timeline.Tim Graham
2015-09-08Fixed #25350 -- Added alias --no-input for --noinput to management commands.Raphael Michel
2015-09-04Fixed #25144 -- Allowed migrate to create tables for apps without migrations.Tim Graham
2015-08-24Fixed #25047 -- Improved "Conflicting migrations" error message.Tim Graham
2015-08-07Fixed #25231 -- Added recording of squashed migrations in the migrate command.mlavin
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
2015-04-18Fixed #23879 -- Allowed model migration skip based on feature/vendorClaude Paroz
2015-04-14Added missing periods in migrate help messages.Joe Borg
2015-02-13Fixed #24184 -- Prevented automatic soft-apply of migrationsMarkus Holtermann
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-18Removed support for syncing apps without migrations per deprecation timeline.Tim Graham
2015-01-17Removed support for custom SQL per deprecation timeline.Tim Graham
2015-01-17Removed support for initial_data fixtures per deprecation timeline.Tim Graham
2015-01-17Removed pre_syncdb and post_syncdb signals per deprecation timeline.Tim Graham
2015-01-12Fixed #24129 -- Added indicator that migrations are rendering the initial stateMarkus Holtermann
2015-01-05Refs #23359 -- Removed double newline from output of migrate --listMarkus Holtermann
2015-01-02Show migration elapsed time when verbosity>1Claude Paroz
2014-12-31Fixed #23359 -- Added showmigrations command to list migrations and plan.Markus Holtermann
2014-12-23Replaced DatabaseCreation sql methods by schema editor equivalentsClaude Paroz
2014-12-16Fixed #23975 -- Restored pre_migrate signal if all apps have migrations.Tim Graham