I\'m designing a model in Django but I don\'t know if this is the best way. I have a model called \"History\" and inside this model I\'ve a specialized function that will handle
Just select your History instance (eg. with primary key 1):
hist = History.objects.get(pk=1)
...and call your method using the hist variable:
hist
hist.insert_history(...)