django.db.utils.IntegrityError: The row in table \'main_tutorial\' with primary key \'1\' has an invalid foreign key: main_tutorial.tutorial_series_id contains a
You can simply delete all the objects in the main_tutorial table from django shell:
python manage.py shellfrom main.models import TutorialTutorial.objects.all().delete()(main being the app name here)
This will delete all the objects in the Tutorial table and then makemigrations and migrate and it should work just fine.