I have a model that is using django-taggit. I want to perform a South data migration that adds tags to this model. However, the .tags manager is not available from within a South migration where you have to use the South orm['myapp.MyModel'] API instead of the normal Django orm.
Doing something like this will throw an exception because post.tags is None.
post = orm['blog.Post'].objects.latest()
post.tags.add('programming')
Is it possible to create and apply tags with taggit from within a South data migration? If so, how?