I have a rich text input that a few users have access to edit on one user’s record. I want to record changes to it to have a version history like Google docs. But this could get crazy resource intensive. Each text field will only be added to and edited a few times by one or two or maybe three users. I’m thinking of just making it a list of texts and recording which user made each edit just using a list where the index numbers for each list will match to indicate who made each edit. Then I can display the history in an RG because the list of texts and the list of editors will both be things on the same data type (in my app this is a milestone).
Any better ways to do it without creating a new datatype with a text field and a user field? Or would that not really cost me any more?
Thanks for your ideas.
Fred