One thing we will want to do before this can be merged is to document the data migration path. In my case, I simply did a python manage.py dumpdata --indent=4 kaleo > invitations.json before upgrading. Then I renamed kaleo to invitations within the file and did a python manage.py migrate && python manage.py loaddata invitations.json.
One thing we will want to do before this can be merged is to document the data migration path. In my case, I simply did a
python manage.py dumpdata --indent=4 kaleo > invitations.json
before upgrading. Then I renamed kaleo to invitations within the file and did apython manage.py migrate && python manage.py loaddata invitations.json
.