Changes between Initial Version and Version 4 of Ticket #16752
- Timestamp:
- Mar 16, 2017, 2:05:04 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16752
- Property Cc added
- Property Triage Stage Unreviewed → Accepted
-
Ticket #16752 – Description
initial v4 10 10 from django.db import connection 11 11 }}} 12 then proceeds to validation the schema against that connection (which is, in fact, the non -existant 'default'). This fails as soon as an operation is called on the connection.12 then proceeds to validation the schema against that connection (which is, in fact, the nonexistent 'default'). This fails as soon as an operation is called on the connection. 13 13 14 14 There is a second problem with this -- all model validation occurs against the default connection rather than the connection that the model will be routed to. That seems like a bug, but I'd like to treat it separately.