oikawatoru
oikawatoru

Reputation: 9

How to makemigrations django 2.2.9 multiple DB

So I am working in a legacy project with a Django 2.2.9 and here we have 3 DBs, nobody migrated on two additional databases ever, and now its time to do it, but nobody knows how to do it on django 2.2.9 on a database that is not default... I tried writing migration manually and running it - didnt help

python manage.py makemigrations No changes detected

Any help?

Upvotes: -1

Views: 39

Answers (1)

oikawatoru
oikawatoru

Reputation: 9

I had this under my model: class Meta: managed = False

only now after few hours understood that it was preventing makemigrations :)

Upvotes: 0

Related Questions