summaryrefslogtreecommitdiff
path: root/docs/releases/4.0.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-06-21 09:09:41 +0200
committerGitHub <noreply@github.com>2022-06-21 09:09:41 +0200
commita0608c4b111555023c24ab7333a42ec53dca6b42 (patch)
treeba955a8e9d55a6cbac539c316b938f42c5fef689 /docs/releases/4.0.txt
parent2887b9f67cadc5295ef6a0574de2c2c8fdd66905 (diff)
downloaddjango-a0608c4b111555023c24ab7333a42ec53dca6b42.tar.gz
Fixed #33789 -- Doc'd changes in quoting table/column names on Oracle in Django 4.0.
Thanks Paul in 't Hout for the report. Regression in 1f643c28b5f2b039c47155692844dbae1cb091cd.
Diffstat (limited to 'docs/releases/4.0.txt')
-rw-r--r--docs/releases/4.0.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/releases/4.0.txt b/docs/releases/4.0.txt
index 31e327eaf9..d64e74941c 100644
--- a/docs/releases/4.0.txt
+++ b/docs/releases/4.0.txt
@@ -492,6 +492,15 @@ some cases.
consequence, any custom deletion logic in ``delete()`` handlers should be
moved to ``form_valid()``, or a shared helper method, if required.
+Table and column naming scheme changes on Oracle
+------------------------------------------------
+
+Django 4.0 inadvertently changed the table and column naming scheme on Oracle.
+This causes errors for models and fields with names longer than 30 characters.
+Unfortunately, renaming some Oracle tables and columns is required. Use the
+upgrade script in :ticket:`33789 <33789#comment:15>` to generate ``RENAME``
+statements to change naming scheme.
+
Miscellaneous
-------------