On Thu, Nov 27, 2008 at 5:11 PM, Chris Smith <[EMAIL PROTECTED]> wrote: > From experience with other ORM platforms (nHibernate, custom built), > I'd expect this to flatten out to a table with approximately the > structure:
You probably want to read the official Django documentation on how model inheritance works; there is no system under which Django will do STI. Abstract models never create their own tables for any reason; only their child models get tables, and then they get one table per child model. Non-abstract models do multi-table inheritance. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---