I want to remove django-taggit from my project, but when I removed the 'taggit'
app from the INSTALLED_APPS
, the following error occurred:
raise NodeNotFoundError(self.error_message, self.key, origin=self.origin)
django.db.migrations.exceptions.NodeNotFoundError: Migration SourceManager.0002_auto_20190218_2112 dependencies reference nonexistent parent node ('taggit', '0002_auto_20150616_2121')
I think this error occurred because django-taggit has migration files, so how to safely remove it from my project?