We are using Elixir and it's versioned extension. We also have a mixin class that provides some required functionality.
class Checkpoint(Entity,JSONMixin):
... # fields
acts_as_versioned()
Now, versions are available as CheckpointVersion instances, but they lack JSONMixin functionality.
How does one add that mixin base class to generated classes? Should one hack ext.versiones source or is there a straightforward technique?