← Back to context

Comment by iterateoften

4 days ago

Yeah. I can’t believe the alternatives that people try to glue together compared to Django.

Honestly Django has the best db migrations I have used from any language or library.

When I start a project, even if I am going to access the db from raw sql I start by modeling it in Django just because the rapid changes in data modeling allow me to not even think about it. I just have to think about what I want it to be and not about the changes to get there. Other ORMs or no ORM I am writing alter tables instead of focusing on the data model itself.