diff options
| author | Tim Graham <timograham@gmail.com> | 2014-12-29 11:41:16 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-31 12:33:11 -0500 |
| commit | 75303b01a9cc900eebf1f27ba0bc6508334242fc (patch) | |
| tree | 2a5da4f8a8036b5f833caa776ecec20dd81774d4 /docs | |
| parent | 64a899dc815f1a070dc7a7c22276e8bb41e46ea6 (diff) | |
Fixed #24245 -- Added introspection for database defaults.
Needed for tests for migrations handling of database defaults.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.9.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/releases/1.9.txt b/docs/releases/1.9.txt index ce317ffeb7..8c7aff8fe1 100644 --- a/docs/releases/1.9.txt +++ b/docs/releases/1.9.txt @@ -165,6 +165,15 @@ Backwards incompatible changes in 1.9 deprecation timeline for a given feature, its removal may appear as a backwards incompatible change. +Database backend API +~~~~~~~~~~~~~~~~~~~~ + +* A couple of new tests rely on the ability of the backend to introspect column + defaults (returning the result as ``Field.default``). You can set the + ``can_introspect_default`` database feature to ``False`` if your backend + doesn't implement this. You may want to review the implementation on the + backends that Django includes for reference (:ticket:`24245`). + Miscellaneous ~~~~~~~~~~~~~ |
