I’ve just migrated from Heroku and I’m very pleased with render.
One thing I’m missing are release-commands.
Heroku offers a very simple way to run only-once one-off commands during the release of a new version. Those commands are entries in the Procfile
like:
release: bundle exec rake db:migrate
...
As the example shows, those release-commands can be used to run migrations before the new version is released.