Hi everyone,
I have 2 apps that were using the same DB (lets call them old_app and new_app).
As the old_app created the DB, old_app had the migrations enabled and new_app had the migrations disabled.
Both apps diverged and I would like to do it the other way round. new_app migrations enabled and old_app migrations disabled.
I tried but I do get InternalError: (1050, u"Table 'XXX' already exists").
Which steps should I use to switch migration from old_app to new_app control and prevent this error?
Thanks, Jon.