Roundup Tracker - Issues

Message3858

Author ThomasAH
Recipients ThomasAH, stephen
Date 2009-08-20.14:07:09
Message-id <1250777229.84.0.915916210058.issue2550533@psf.upfronthosting.co.za>
In-reply-to
I ran into this problem when upgrading from 0.7.12 to 1.4.9.
The index gets created during one of the upgrade steps so I could not
manually drop it.

My workaround was to ignore errors when creating the index in
add_class_key_required_unique_constraint() in rdbms_common.py:

        try:
            self.sql(sql)
        except Exception:
            pass
History
Date User Action Args
2009-08-20 14:07:09ThomasAHsetmessageid: <1250777229.84.0.915916210058.issue2550533@psf.upfronthosting.co.za>
2009-08-20 14:07:09ThomasAHsetrecipients: + ThomasAH, stephen
2009-08-20 14:07:09ThomasAHlinkissue2550533 messages
2009-08-20 14:07:09ThomasAHcreate