summaryrefslogtreecommitdiff
path: root/django/db/backends/creation.py
AgeCommit message (Expand)Author
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-28Fixed #12977 -- Ensure that indexes don't exceed character limits on MySQL. T...Russell Keith-Magee
2010-04-21Fixed #13328 -- Ensured that querysets on models with callable defaults can b...Russell Keith-Magee
2010-03-20Fixed #12850 -- Ensured that constraint names are quoted when they are remove...Russell Keith-Magee
2010-01-19Fixed #12633 -- Modified some old m2m attribute use in deprecated m2m table c...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-07-27Fixed #11428 -- Ensured that SQL generating commands and dumpdata don't inclu...Russell Keith-Magee
2009-06-14Fixed #11316 -- Fixed a Python 2.3 compatibilty issue with [10966] (in Python...Gary Wilson Jr
2009-06-09Fixed #9253 -- Modified the method used to generate constraint names so that ...Russell Keith-Magee
2009-04-09Fixed #10647: intermediary tables between two umanaged models are no longer c...Jacob Kaplan-Moss
2009-03-11Fixed the django.contrib.gis test database creation as well.Malcolm Tredinnick
2009-03-11Fixed some breakages in the test database handling from r10026.Malcolm Tredinnick
2009-03-09Fixed #3163 -- Add a "Meta.managed" option to models.Malcolm Tredinnick
2009-03-01Changed the way cache specifiers are parsed.Malcolm Tredinnick
2009-01-16Fixed #8138 -- Changed django.test.TestCase to rollback tests (when the datab...Karen Tracey
2009-01-06Fixed #9862 -- For better SQL portability, don't specify "NULL" on nullableMalcolm Tredinnick
2008-12-02Fixed #9736 -- Added quoting to the SQL constraint names generated during tab...Russell Keith-Magee
2008-08-12Fixed a group of missing imports, aliases and parameter passings from theMalcolm Tredinnick
2008-08-11Fixed #8228: fixed a Python 2.3 compatibility from [8296].Jacob Kaplan-Moss
2008-08-11Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee
2007-09-14Added django/db/backends/creation.py, with BaseCreation. Refs #5461Adrian Holovaty