On 6 October 2010 04:02, Tom Eastman <[email protected]> wrote: > I'm using Django to create an interface for a legacy PostgresQL database. > The primary keys for my tables use sequences that aren't named the way > django expects them to be (i.e. '<table>_<column>_seq'), this means I can't > call them AutoFields. > >> http://code.djangoproject.com/ticket/1946
I still use my custom backend that recursively looks up a sequence-name, which means I have to be extra-careful on every new django-version since I need to upgrade that backend myself. With 1.2 at least I don't need to mess with django's own directories anymore. HM -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
