How to Solve NameError: name 'migrations' is not defined -- django

Solution: Import the 'migrations' module

# Add the following line to the top of your code
from django import migrations

 

For more information:
django migrations