summaryrefslogtreecommitdiff
path: root/django/core/management/sql.py
AgeCommit message (Expand)Author
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-02-04Fixed #32395 -- Allowed capturing stdout of migration signals.Simon Charette
2020-06-04Refs #5086 -- Removed unused only_django argument from sql_flush().Jon Dufresne
2020-04-17Fixed #31473 -- Made sql_flush() use RESTART IDENTITY to reset sequences on P...Jon Dufresne
2019-04-24Removed unnecessary assignments in various code.Jon Dufresne
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-05-15Fixed #24100 -- Made the migration signals dispatch its plan and apps.Simon Charette
2015-01-18Removed support for syncing apps without migrations per deprecation timeline.Tim Graham
2015-01-17Required sqlparse for SQL splitting per deprecation timeline.Tim Graham
2015-01-17Removed support for custom SQL per deprecation timeline.Tim Graham
2015-01-17Removed pre_syncdb and post_syncdb signals per deprecation timeline.Tim Graham
2014-12-25Fixed #23866 -- Harmonized refs to Django documentation from codeClaude Paroz
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-11-11Normalized opening a file and decoding its content.Aymeric Augustin
2014-09-23Fixed #18782 -- Prevented sql_flush to flush viewsClaude Paroz
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-08-28Fixed #23379 -- Corrected a referencing issue in sql_create.Simon Charette
2014-08-18Fixed #23136 -- Added a message when sqlclear does nothingGabriel Muñumel
2014-06-07Fixed #22749: Making SQL management commands migration aware.Víðir Valberg Guðmundsson
2014-06-01Revert "Making SQL management commands migration aware."Florian Apolloner
2014-05-29Fix test failure caused by 3149cdce32e7261b2d44128ab712c4d4f1a5d429Andrew Godwin
2014-05-29Making SQL management commands migration aware.Víðir Valberg Guðmundsson
2014-04-30Removed unused import.Tim Graham
2014-04-29Removed bogus, ineffective 'U' flag from codecs.open() call.Ramiro Morales
2014-04-26Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
2014-04-16Revert "Fixed #22401 -- Deprecated regular expression parsing of initial SQL ...Tim Graham
2014-04-09Fixed #22401 -- Deprecated regular expression parsing of initial SQL in favor...julien 'pouete' Godin
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2014-01-13Remove unneded open(.., 'U') when on python 3.Marc Tamlyn
2014-01-12Fixed #21477 -- Renamed db to using in pre/post_migrate signals.Aymeric Augustin
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-29Changed sql_* to use an app config instead of a models module.Aymeric Augustin
2013-12-29Refactored the migration signals to use app configs.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.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-17Deprecated get_app_package, get_app_path and get_app_paths.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-10-16Fixed #19657 -- Made sql commands honor allow_migrateClaude Paroz
2013-10-05Fixed #21189: Cleaned up usage of bare except clauses.Baptiste Mispelon
2013-09-06Fixed a number of flake8 errors -- particularly around unused imports and loc...Alex Gaynor
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2013-07-30Rename pre_ and post_syncdb to *_migrate, with aliases from old namesAndrew Godwin