Django South Error: AttributeError: 'DateTimeField' object has no attribute 'model'` Django South Error: AttributeError: 'DateTimeField' object has no attribute 'model'` postgresql postgresql

Django South Error: AttributeError: 'DateTimeField' object has no attribute 'model'`


I had to upgrade my version of south for django to version 0.8.4.

Had to run the following command:

sudo easy_install -U South

Or, if using pip:

pip install South --upgrade

After that, my migration worked as expected.