Re: schema-evolution: postgres introspection bug

2006-12-08 Thread mario__
> On 01/11/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > # select pg_constraint.conname, pg_constraint.contype, > pg_attribute.attname from pg_constraint, pg_attribute where > pg_constraint.conrelid=pg_attribute.attrelid and > pg_attribute.attnum=any(pg_constraint.conkey) and > pg_constraint

Re: schema-evolution: postgres introspection bug

2006-11-01 Thread Matthew Flanagan
On 01/11/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > Hi, > > I've been testing out the schema-evolution branch again and hit the > same issue I was having before where it was trying to evolve a model > that hadn't changed. Here are my minimal test case models for this > issue: > > from djang

schema-evolution: postgres introspection bug

2006-10-31 Thread Matthew Flanagan
Hi, I've been testing out the schema-evolution branch again and hit the same issue I was having before where it was trying to evolve a model that hadn't changed. Here are my minimal test case models for this issue: from django.db import models class FooType(models.Model): name = models.Char