Yes, you can do this, but you need to use the Taggit API Taggit (i.e. create a Tag and TaggedItem ) instead of using the add method.
First you need to start by freezing Taggit into this migration:
./manage.py datamigration blog migration_name
Then your forward method might look something like this (assuming you have a list of tags that you want to apply to all Post objects.
def forwards(self, orm): for post in orm['blog.Post'].objects.all():
source share