summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2014-02-04Fixed #21748 -- join promotion for negated AND conditionsAnssi Kääriäinen
2014-02-02Removed an unused import which snuck in.Alex Gaynor
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2014-02-02Made SQLCompiler.execute_sql(result_type) more explicit.Michael Manfre
2014-01-28Fixed #21883 -- Added six.moves.xrange importAnssi Kääriäinen
2014-01-28Fixed #21853 -- Fixed Manager.__module__ to properly return 'django.db.models...Loic Bistuer
2014-01-26Fixed #21877 -- Renamed django.apps.base to config.Aymeric Augustin
2014-01-26Took advantage of the new get_model API. Refs #21702.Aymeric Augustin
2014-01-25Unroll choices iterators in field deconstructionAndrew Godwin
2014-01-24Fixed #21787 -- regression in MTI .exclude() queriesAnssi Kääriäinen
2014-01-20Use date_extract_sql() for DateFieldsAnssi Kääriäinen
2014-01-20Fixed regex lookup on OracleAnssi Kääriäinen
2014-01-20Fixed Oracle in lookup when more than 1000 paramsAnssi Kääriäinen
2014-01-20Removed an inactive system check for upload_to.Russell Keith-Magee
2014-01-19Fixed a small collection of flake8 violations that had snuck inAlex Gaynor
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2014-01-19Fixed #21664: Multi-table inheritance was duplicating _ptr fieldsAndrew Godwin
2014-01-19Implement swappable model support for migrationsAndrew Godwin
2014-01-19Fixed Oracle query failures caused by lookup refactorAnssi Kääriäinen
2014-01-18Fixed #21821 -- db_type argument for field_cast_sqlAnssi Kääriäinen
2014-01-18Fixed #21794 -- Adjusted warning for abstract models.Aymeric Augustin
2014-01-18Fixed #16187 -- refactored ORM lookup systemAnssi Kääriäinen
2014-01-17Fixed #21785: Bad handling of both auto_now and _add on deconstructAndrew Godwin
2014-01-12Fixed #21477 -- Renamed db to using in pre/post_migrate signals.Aymeric Augustin
2014-01-12Fixed #21413 -- resolve_columns fields misalignmentAnssi Kääriäinen
2014-01-10Deprecated importing a model before loading its application.Aymeric Augustin
2014-01-08Changed parent class calls to super in Field subclassesmaurycyp
2014-01-05Fixed #21711 -- Enforced unicity of model names.Aymeric Augustin
2013-12-31Made it possible to change an application's label in its configuration.Aymeric Augustin
2013-12-31Small style cleanup.Aymeric Augustin
2013-12-31Turned django.db.models.app_cache_ready back into a method.Aymeric Augustin
2013-12-30Stopped populating the app registry as a side effect.Aymeric Augustin
2013-12-29Replaced Options.object_name.lower() by Options.model_name.Aymeric Augustin
2013-12-29Refactored the migration signals to use app configs.Aymeric Augustin
2013-12-28Removed the only_installed argument of Apps.get_models.Aymeric Augustin
2013-12-28Changed get_model to raise an exception on errors.Aymeric Augustin
2013-12-28Stopped calling apps.get_model with only_installed=False.Aymeric Augustin
2013-12-26Turned apps.ready into a property. Added tests.Aymeric Augustin
2013-12-26Removed a few gratuitous lambdas.Aymeric Augustin
2013-12-24Typo fix for exception message.Jonas Gastal
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Renamed has_model to get_registered_models.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Renamed registered_model to has_model.Aymeric Augustin
2013-12-22Added an _-prefix to pending lookups because it's transient.Aymeric Augustin
2013-12-22Terminated AppCache._populate() with extreme prejudice.Aymeric Augustin
2013-12-22Removed the app_config.installed flag.Aymeric Augustin
2013-12-22Refactored registration of models.Aymeric Augustin
2013-12-22Fixed #21643 -- repeated execution of qs with F() + timedeltaAlexey Voronov
2013-12-18Fixed #11629 -- Deprecated callable arguments to queryset methods.Baptiste Mispelon