[Answer]-Migrating a model to a new app in Django 1.7.2 fails with ValueError at FK

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.

👤naren

Leave a comment