I am trying to formulate a datamigration for one of my apps. I am using the reputation system mentioned here - django-reputation
in my forward
method, I have the following code -
orm['reputation.reputation'].objects.log_reputation_action(user = user_x, originating_user = user_y, action_value = 10, target_object = sample_obj)
but while running the migration, I get the following error -
AttributeError: 'Manager' object has no attribute 'log_reputation_action'
I have freezed the reputation
app in the datamigration. Please let me know what I am doing wrong here.
Thanks in advance.
Looks like this is not possible.
From the South documentation: