| ▲ | zelphirkalt a day ago | ||||||||||||||||
Having recently built a Django app, I feel like I need to highlight the issues coming with using sqlite. Once you get into many to many relationships in your model, suddenly all kinds of things are not supported by sqlite, while they are when you use postgres. This also shows, that you actually cannot (!) use sqlite for testing, because it behaves significantly differently from postgres. So I think now: Unless you have a really really simple model and app, you are just better off simply starting postgres or a postgres container. | |||||||||||||||||
| ▲ | isodev a day ago | parent [-] | ||||||||||||||||
My comment is that this is a choice that should be made for each project depending on what you’re building - does your model require features not supported by SQLite or Postgres etc. > Unless you have a really really simple model and app And this is the wrong conclusion. I have a really really complex model that works just fine with SQlite. So it’s not about how complex the model is, it’s about what you need. In the same way in the original post there were so many storage types, no doubt because of such “common knowledge guidelines” | |||||||||||||||||
| |||||||||||||||||