Database Migrations
A common task is to run database migrations with newer code before deploying the code. This is easily achieved with the ufo task
command. Here’s an example:
ufo task demo-web -c bundle exec rake db:migrate
It is nice to wrap the commands in a wrapper script in case you have to do things like to load the environment.
ufo task demo-web -c bin/migrate
The bin/migrate
script can look like this:
#!/bin/bash
bundle exec rake db:migrate
The ufo task
command is generalized so you can run any one-off task. It is not just limited to running migrations. The ufo task
command performs the following:
- Builds the docker image and pushes it to a registry
- Registers the ECS Task definition
- Runs a one-off ECS Task
Pro tip: Use the <- and -> arrow keys to move back and forward.
Edit this page
See a typo or an error? You can improve this page. This website is available on GitHub and contributions are encouraged and welcomed. We love pull requests from you!
- Suggest an edit to this page (here's the contributing guide).
- Open an issue about this page to report a problem.