summaryrefslogtreecommitdiff
path: root/django/core/management/commands/sqlmigrate.py
AgeCommit message (Collapse)Author
2018-07-02Removed parser.add_arguments() arguments that match the defaults.Claude Paroz
2018-06-25Fixed #29518 -- Added validation for sqlmigrate's app_label argument.oliver
2017-04-01Removed implicit default store_true/false argparse args.Jon Dufresne
argparse automatically sets the default value for store_true/false arguments to its opposite.
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-02-05Fixed #25833 -- Added support for non-atomic migrations.Pankrat
Added the Migration.atomic attribute which can be set to False for non-atomic migrations.
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-08-18Fixed #23303 -- Added BEGIN and COMMIT statements to the output of sqlmigrate.Baptiste Mispelon
2014-06-20Swapped placeholders in [sql]migrate command errorClaude Paroz
2014-06-14Converted remaining management commands to argparseClaude Paroz
2014-05-15Harmonized some PEP 0263 coding preamblesClaude Paroz
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-09-06Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin