python - How to get Django South to migrate a field with changed max_length? -
i have charfield
in model want increase max_length
attribute. south isn't noticing change, saying there's nothing migrate. how migrate this?
issue command (after change of max_length
in code):
python manage.py schemamigration <name of app> --auto python manage.py migrate <name of app>
that worked me. hope helps