summaryrefslogtreecommitdiff
path: root/django/core/management/sql.py
AgeCommit message (Expand)Author
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
2013-07-24Fixed #14300 -- Fixed initial SQL location if models is a package.Tim Graham
2013-06-10Added a stealth option to flush to allow cascades.Aymeric Augustin
2013-05-29Fixed #15697 -- Made sqlindexes aware of auto-created tablesClaude Paroz
2013-05-23Fixed #11398 - Added a pre_syncdb signalDonald Stufft
2013-02-24Add sqldropindexes to manageTomasz Rybak
2013-02-05Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.Simon Charette
2012-12-08Fixed #19357 -- Allow non-ASCII chars in filesystem pathsClaude Paroz
2012-12-03Fixed #19416 -- Fixed multi-line commands in initial SQL filesClaude Paroz
2012-10-21Updated error message for bad database enginePreston Holmes
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-08-14[py3] Fixed file.read().decode(), used codecs.open() insteadAnssi Kääriäinen
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-21Fixed #4680 -- Improved initial_sql parsingClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Made table_names() output sorted.Anssi Kääriäinen
2012-03-31Removed the deprecated reset and sqlreset management commands.Aymeric Augustin
2011-09-10Kill some more dead code.Alex Gaynor
2011-08-12Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.Jannis Leidel
2011-04-02Advanced deprecations in core.mail, core.commands, core.context_processors an...Russell Keith-Magee
2010-12-12Fixed #14268 -- Start the deprecation of the reset and sqlreset management co...Jannis Leidel
2010-10-31When looking for django tables which exist, query for all tables once, not on...Alex Gaynor
2010-10-09Fixed #14356. Remove some dead imports from django.core.management.sql. Tha...Alex Gaynor
2010-10-06Negligible formatting improvement to an error in management/sql.pyAdrian Holovaty
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-01-27Fixed #11969 -- `Field.post_create_sql` hook should not be called for unmanag...Justin Bronn
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-11-03Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee