I am using post_save
signal to trigger the creation of profile data for User
instance. The problem is if I create a User
object from data migration then the post_save
signal isn't triggering.
However, If I create User
instance via shell or UserCreationForm
, everything seems to be working as normal.