I am working on cleaning an old database where the revisions of data are kept in same table with different id PK but share the same uuid (not the PK). When moving old data into django reversion before deleting it from this table, it picks up id and does not map values based on uuid. Is there a way to tell reversion to use a column besides pk?
I am working on cleaning an old database where the revisions of data are kept in same table with different
id
PK but share the sameuuid
(not the PK). When moving old data into django reversion before deleting it from this table, it picks upid
and does not map values based onuuid
. Is there a way to tell reversion to use a column besidespk
?