Quote relation name creating PostgreSQL database
Using PostgreSQL as a database backend, if I define a model with a foreignkey field with an uppercase letter in the attribute name, the relation constrait name would end with all the letters in lowercase. This can have various side effects such as not being able to reset the database becuase Django can't remove the constrait (it tries to remove a constrait with uppercase letters and the one in the database is all lowercase).
This happens because the constraint name is not quoted when the database is created.
All it takes to fix this is add backend.quote_name to the name while creating the sql.
I fixed it in 0.96 but I can't find where this should be changed in SVN.
Bad SQL:
ALTER TABLE "proto0_viaje" ADD CONSTRAINT reservadoPor_id_refs_id_331c0818 FOREIGN KEY ("reservadoPor_id") REFERENCES "proto0_empleado" ("id") DEFERRABLE INITIALLY DEFERRED;
Good SQL:
ALTER TABLE "proto0_viaje" ADD CONSTRAINT "reservadoPor_id_refs_id_331c0818" FOREIGN KEY ("reservadoPor_id") REFERENCES "proto0_empleado" ("id") DEFERRABLE INITIALLY DEFERRED;
Change History
(4)
milestone: |
→ 1.1
|
Triage Stage: |
Unreviewed → Accepted
|
Component: |
Core framework → Database layer (models, ORM)
|
Resolution: |
→ invalid
|
Status: |
new → closed
|
This looks like a bit of a non-issue. Constraint names already are quoted in both trunk and 1.0.X.
The code in question is in
django/db/backends/creation.py
(plus possible db-specific extensions, but PostgreSQL uses the default).