1👍
Had similar issue check dependency in your failing migrations
Eg:
dependencies = [
('some_app', '0003_auto_20160713_0435'),
('stores', '0002_stores'), # This is your latest migration in stores app
]
Try adding stores dependency to migration and try.
Source:stackexchange.com