Hi *,
I’m trying to upgrade to django 1.8, but running into some app-dependency
issues:
There’s an initial migration for my custom user model in accounts.models,
so the accounts_pixolususer table should have been created. The syncdb
command breaks while adding a constraint to an app without migrations
(meters), which has a model with a foreign key pointing to my custom user
model.
For syncdb there’s an easy workaround - I just run ./manage.py migrate accounts
first. But since syncdb is also called by the testrunner, so I can’t run tests
anymore :/.
best regards,
Jochen