[Fixed]-Django South Error: AttributeError: 'DateTimeField' object has no attribute 'model'`

30👍

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.

Leave a comment