On 9/5/05, jws <[EMAIL PROTECTED]> wrote: > There doesn't seem to be anyway to create postgresql tables that use > inheritance from the Django model syntax. Is that true or am I missing > something?
That's correct. There's no way to do table inheritance. Generally, you can use OneToOneFields to solve the problem. Check out the example here: http://www.djangoproject.com/documentation/models/one_to_one/ Adrian -- Adrian Holovaty holovaty.com | djangoproject.com | chicagocrime.org
