summaryrefslogtreecommitdiff
path: root/django/core/management/commands/migrate.py
AgeCommit message (Expand)Author
2026-03-08Fixed #12529 -- Fixed migrate --run-syncdb crash for existing model with trun...Mariusz Felisiak
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2024-12-11Fixed #35920 -- Observed requires_system_checks in migrate and runserver.Jacob Walls
2024-10-15Fixed #35656 -- Added an autodetector attribute to the makemigrations and mig...leondaz
2024-05-10Fixed #35429 -- Added argparse choices to --database options.SaJH
2024-02-13Fixed #35122 -- Made migrate --prune option respect --app_label.Moein Bbp
2022-09-27Fixed #34052 -- Made migrate --check don't emit signals and output when up to...JunKi Yoon
2022-09-26Improved migrate help text for the --check option.Mike Lissner
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-21Fixed #26760 -- Added --prune option to migrate command.Jacob Walls
2021-08-04Fixed #29063 -- Fixed migrate crash when specifying a name of partially appli...Jacob Walls
2021-02-04Fixed #32395 -- Allowed capturing stdout of migration signals.Simon Charette
2020-06-12Fixed #31645 -- Enhanced the migration warning for migrate commmand.Chinmoy Chakraborty
2020-05-21Fixed #31546 -- Allowed specifying list of tags in Command.requires_system_ch...Hasan Ramezani
2020-05-04Changed `'%s' % value` pattern to `str(value)`.Nick Pope
2020-04-27Refs #18325 -- Removed unnecessary line endings in management commands.François Freitag
2020-04-27Removed unnecessary tuple wrapping of single format string argument.François Freitag
2020-03-26Fixed #31402 -- Added migrate --check option.Gordon Pendleton
2020-02-07Refs #31055 -- Added --database option to the check management command.Simon Charette
2019-10-14Fixed #30870 -- Fixed showing that RunPython operations are irreversible by m...Mariusz Felisiak
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