[Answered ]-Using south datamigration to change value in old records

2👍

You do not need to do a data migration for this case. As you have specified a default for your new field, that will be used when you apply the schema migration.

Use the following command to apply the migration:

./manage.py migrate myapp

See the advanced changes South tutorial for more information on default values for new fields.

Leave a comment