Max Battcher wrote: > I'm living on the bleeding edge (just migrated to rev. 2123) with my > current development, and followed the suggested ALTER TABLE commands > from the wiki page, and though I can read from the data (all of the > views work correctly), I can't save because all of the sequences are now > out of sync. I tried renaming the sequences to fit the new naming > scheme, but to no avail (Django is calling the new sequence name and the > table itself still refers to the old sequence name).
Yeah, you need to do something like: ALTER TABLE auth_groups_id_seq RENAME TO auth_group_id_seq; ALTER TABLE auth_groups ALTER id SET DEFAULT nextval('public.auth_group_id_seq'::text); ...for each sequence that needs renaming. Regards, Jason