Check for pending database migrations on start
Currently, we're applying up migrations on start automatically when the application starts. This is dangerous for clustered environments. Instead of applying migrations we should check if all known migrations (to the instance) are applied and halt if not, similar to what Rails does.