Sha256: 979c5171ffaf847a159351e01b93a3f8f92dbb4560f54be8bcd5b96e6a49b737
Contents?: true
Size: 822 Bytes
Versions: 5
Compression:
Stored size: 822 Bytes
Contents
--- title: Database Migrations nav_order: 42 --- 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: 1. Builds the docker image and pushes it to a registry 2. Registers the ECS Task definition 3. Runs a one-off ECS Task {% include prev_next.md %}
Version data entries
5 entries across 5 versions & 1 rubygems