On Sun, 2009-04-19 at 22:24 -0700, Adrián Ribao wrote: > Hello, > I have a model using extra fields in M2M relationships as described > in: > http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships > > When I try to do something I get this: > > "psycopg2.OperationalError: currval of the sequence > «metodo_factorencadena_id_seq» is not defined in this session > > and I have no idea what does it mean. Could anyone help me please?
We can start by assuming that Django itself isn't broken at the basic level. Many-to-many fields work and the feature described in that documentation works. So the error is caused by something you have done -- in your code or in the way you've created the models. Since the error is PostgreSQL reporting that the database schema doesn't seem to be set up properly (Django will never explicitly refer to a sequence name except when creating tables), it sounds like the latter. The point is, the problem is caused by something in the code you haven't shown us and is dependent upon your models and what you are doing to trigger the problem. So please provide at least some information about that. Some kind of context for what you did to cause this. Given what I wrote in the previous paragraph, how did you create the intermediate table? Did you make alterations to an existing table and then not manually alter the database? Are you modeling an existing database table? What version of Django are you using? Which database backend? Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---