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


Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -