Python : Django === Go : ??

If I want a nice ORM and built in migrations, what framework should I be using 10 years later?

I wasn't happy with the current database access packages (https://github.com/jmoiron/sqlx, https://gorm.io), so I wrote my own for PostgreSQL. It takes existing queries and generates type-safe Go methods (https://github.com/kyleconroy/sqlc). I enjoy using it and thought others might too.

As for migrations, I've had success with https://github.com/pressly/goose. It's lightweight and is also just SQL.