> 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
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
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