summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-06-21 09:09:41 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-06-21 09:10:43 +0200
commit91b365ef67c82d790dc6021882d39f7aed960a2e (patch)
tree306a7e2415552650eb7ceffcabd4bf171e6b2286
parent99e5ce96c6716fe43ce1dc706a9a49b77f9e7bbc (diff)
[4.1.x] 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. Backport of a0608c4b111555023c24ab7333a42ec53dca6b42 from main
-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
-------------