index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
backends
/
creation.py
Age
Commit message (
Expand
)
Author
2012-02-28
Fixed #17786 (again) -- Ensured destruction of test databases works under Ora...
Aymeric Augustin
2012-01-30
Fixed #10868 -- Stopped restoring database connections after the tests' execu...
Julien Phalip
2011-11-19
Fixed #15255 -- Ensured createcachetable honors database routers.
Aymeric Augustin
2011-10-14
Fixed #12308 -- Added tablespace support to the PostgreSQL backend.
Aymeric Augustin
2011-09-21
Fixed #16353 -- don't try to create Site objects on all databases. Refs #1557...
Carl Meyer
2011-09-10
Remove a bunch of deadcode/dead imports.
Alex Gaynor
2011-07-06
Fixed #16250 -- Made test database creation support code in the PostgreSQL DB...
Ramiro Morales
2011-07-05
Rolled back r16510, r16513 and r16514 because it wasn't ready.
Jannis Leidel
2011-07-04
Fixed #15255 -- Stopped database cache from ignoring database routers when cr...
Jannis Leidel
2011-04-15
Fixed #15573: Forced the default site id to be 1 when creating test databases...
Ian Kelly
2011-04-02
Removed deprecated DB backend functions for creating m2m tables.
Russell Keith-Magee
2011-02-02
Fixed #15029 -- Moved to database backends the ability to decide if two DATAB...
Ramiro Morales
2011-01-18
Refs #14661 -- Clarified the handling of initial data injected via custom SQL.
Russell Keith-Magee
2010-12-21
Small performance tweak - avoid loading django.core.management in DB backend ...
Luke Plant
2010-12-21
Fixed #11675 -- Added support for the PyLibMC cache library. In order to supp...
Russell Keith-Magee
2010-12-21
Fixed #14921 -- Tweak changes made in r14861 for the Oracle backend so the te...
Ramiro Morales
2010-12-08
Fixed error introduced in r14666 that results in the message reporting the te...
Ramiro Morales
2010-11-21
Added printing of the name of test database being created/destroyed, at verbo...
Ramiro Morales
2010-10-11
Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...
Russell Keith-Magee
2010-10-11
Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnin...
Russell Keith-Magee
2010-08-07
Rationalized the verbosity levels (including introducing a new super-verbose ...
Russell Keith-Magee
2010-08-05
Fixed #13946 -- Modified the database cache backend to use the database route...
Russell Keith-Magee
2010-05-04
Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....
Russell Keith-Magee
2010-04-28
Fixed #12977 -- Ensure that indexes don't exceed character limits on MySQL. T...
Russell Keith-Magee
2010-04-21
Fixed #13328 -- Ensured that querysets on models with callable defaults can b...
Russell Keith-Magee
2010-03-20
Fixed #12850 -- Ensured that constraint names are quoted when they are remove...
Russell Keith-Magee
2010-01-19
Fixed #12633 -- Modified some old m2m attribute use in deprecated m2m table c...
Russell Keith-Magee
2009-12-22
Fixed #1142 -- Added multiple database support.
Russell Keith-Magee
2009-07-27
Fixed #11428 -- Ensured that SQL generating commands and dumpdata don't inclu...
Russell Keith-Magee
2009-06-14
Fixed #11316 -- Fixed a Python 2.3 compatibilty issue with [10966] (in Python...
Gary Wilson Jr
2009-06-09
Fixed #9253 -- Modified the method used to generate constraint names so that ...
Russell Keith-Magee
2009-04-09
Fixed #10647: intermediary tables between two umanaged models are no longer c...
Jacob Kaplan-Moss
2009-03-11
Fixed the django.contrib.gis test database creation as well.
Malcolm Tredinnick
2009-03-11
Fixed some breakages in the test database handling from r10026.
Malcolm Tredinnick
2009-03-09
Fixed #3163 -- Add a "Meta.managed" option to models.
Malcolm Tredinnick
2009-03-01
Changed the way cache specifiers are parsed.
Malcolm Tredinnick
2009-01-16
Fixed #8138 -- Changed django.test.TestCase to rollback tests (when the datab...
Karen Tracey
2009-01-06
Fixed #9862 -- For better SQL portability, don't specify "NULL" on nullable
Malcolm Tredinnick
2008-12-02
Fixed #9736 -- Added quoting to the SQL constraint names generated during tab...
Russell Keith-Magee
2008-08-12
Fixed a group of missing imports, aliases and parameter passings from the
Malcolm Tredinnick
2008-08-11
Fixed #8228: fixed a Python 2.3 compatibility from [8296].
Jacob Kaplan-Moss
2008-08-11
Fixed #5461 -- Refactored the database backend code to use classes for the cr...
Russell Keith-Magee
2007-09-14
Added django/db/backends/creation.py, with BaseCreation. Refs #5461
Adrian Holovaty