summaryrefslogtreecommitdiff
path: root/django/core/management/commands/flush.py
AgeCommit message (Expand)Author
2026-01-18Applied Black's 2026 stable style.Mariusz Felisiak
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2024-05-10Fixed #35429 -- Added argparse choices to --database options.SaJH
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
2020-06-04Refs #5086 -- Removed unused only_django argument from sql_flush().Jon Dufresne
2020-04-27Refs #18325 -- Removed unnecessary line endings in management commands.François Freitag
2020-04-21Refs #29983 -- Fixed displaying pathlib.Path database name in flush command's...Mariusz Felisiak
2020-04-20Fixed #31477 -- Removed "using" argument from DatabaseOperations.execute_sql_...Jon Dufresne
2018-07-02Removed parser.add_arguments() arguments that match the defaults.Claude Paroz
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-07-11Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
2017-06-16Fixed #27787 -- Made call_command() validate the options it receives.Chandrakant Kumar
2017-04-01Removed implicit default store_true/false argparse args.Jon Dufresne
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-03-05Refs #26315 -- Cleaned up argparse options in commands.Jon Dufresne
2015-09-08Fixed #25350 -- Added alias --no-input for --noinput to management commands.Raphael Michel
2015-03-05Fixed #24369 -- Prevented crash when flushing before db migrationClaude Paroz
2015-02-28Simplified emit_post_migrate from flush commandClaude Paroz
2015-02-28Revert "Fixed #24369 -- Prevented crash when `flush`ing before db migration"Claude Paroz
2015-02-28Fixed #24369 -- Prevented crash when `flush`ing before db migrationClaude Paroz
2015-02-06Sorted imports with isort; refs #23860.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
2014-10-27Fixed #23699 -- Prevented flush from loading initial data for apps with migra...Tony Zhu
2014-09-06Fixed #22882 -- Fixed a UnicodeDecodeError in flush.Tim Graham
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-07-30Fixed #23067 -- Updated docs to use django-adminChristoph Heer
2014-06-19Fixed #22835 -- Deprecated NoArgsCommand.Maxime Turcotte
2014-06-14Converted remaining management commands to argparseClaude Paroz
2014-06-08Fixed #22487: Optional rollback emulation for migrated appsAndrew Godwin
2014-03-22Avoided transactional truncates on amateur databases.Aymeric Augustin
2014-03-21Fixed transaction handling in two management commands.Aymeric Augustin
2014-03-21Removed legacy transaction management per the deprecation timeline.Aymeric Augustin
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2013-12-30Removed the only_with_models_module argument of get_model[s].Aymeric Augustin
2013-12-29Changed get_migratable_models to use an app config.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Stopped iterating on INSTALLED_APPS.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Made it possible to create apps without a models module.Aymeric Augustin
2013-12-17Deprecated get_apps().Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-10-16Add get_migratable_models util method to ConnectionRouterClaude Paroz
2013-08-09utils.importlib is deprecatedAndrew Godwin