This looks strange, although I'm not familiar with exactly this
particular use case. I'm assuming you are referring to multi-table
inheritance. Are you certain Django 1.5 wasn't creating these
tables? Was it using migrations or South maybe? (Obviously I don't
remember when Django started supporting migrations.) When you say
it tries to query these tables, when does it attempt to do so?
Could you post an example of a subclasss, preferably with its base
class?
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/45eec62d-a27c-4b5e-b8ff-6fc2981efa17n%40googlegroups.com.
Prior to version 1.7, Django only supported adding new models to the database; it was not possible to alter or remove existing models via the syncdb command (the predecessor to migrate).
Third-party tools, most notably South, provided support for these additional types of change, but it was considered important enough that support was brought into core Django.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2fe87247-13ba-41d5-a38e-6915de6822b3n%40googlegroups.com.