[Answered ]-Djongo migrate models cons

1👍

Well, in the general case, the solutions you have are, in increasing order of difficulty:

  1. Get rid of Djongo. Use Django with an SQL database, as that’s what it’s designed for. You can still use MongoDB for whatever data you might have in there, but the main Django database is better off being SQL.
  2. Don’t use packages that don’t work with Djongo.
  3. Fix the packages that don’t work with Djongo to work with it.

I would recommend going for (1)…

👤AKX

Leave a comment