DEV Community

JT Dev for JetThoughts

Posted on • Updated on • Originally published at jetthoughts.com

Avoid data migrations in the schema migrations for Rails

Avoid data migrations in the schema migrations for Rails

Could you re-run all migrations in the project? How often you were required to fix them, while production under the fire? What can you do to prevent problems with migration and not waste much time on it?

Staled migrations on  raw `db:migrate:reset` endraw

Solution

Do not mess with schema and data migrations! Separate those problems. There is a pretty common strategy for this:

  • Use migrations only for schema changes

  • Use one-off tasks to seed/transform/import data

  • Aggressively squash old migrations & cleanup redundant tasks

How can you onboard it?

As usual, there are ready solutions with a lot of helpers to make this works:

But also you can do this without gems, by following simple convention.

DIY Algorithm

One-off data migration rake task

  1. Add Service to migrate data. More details about Services you can find on How to use a Transaction Script (aka Service Objects) in Ruby on Rails.

  2. (Optional) If you are using the TDD way, you also should add tests for it. Make sure that production data will not be corrupted after this migration.

  3. Create a one-off rake task with the timestamp. The timestamp will simplify finding unrelated tasks and cleaning up them.

  4. In the task, you should run Service. No need to have any logic there. Just run and output.

  5. On release: invoke the rake task.

  6. And after the success schedule deletes the rake task and all redundant code that was used only for this Service

More details about the problem

It’s not common for Ruby on Rails developers to re-run migrations. But migrations are the most “perishable product” in the project.

Models schema, methods, or in general logic at all in the migrations, as usual, are not relevant in a very short time. We do not use it on an everyday basis, so we would not find a problem faster.

As result, once you will have a situation when you need to run a migration. And you will find that they are broken. It will require some time and energy to clean up and make them work.

But as usual, you have production on the fire at this time, and last what you would like to fix migrations.

Other solutions

One of the ideas to make migrations work as long as possible is to not use direct Model references, avoid methods invocations, and replace Active Record Queries with raw SQL statements.

Also, you can do regular migration cleanups and squashes, but as usual, we do not care about them much as soon as we have delivered them to production.

Top comments (1)

Collapse
 
danlee1996 profile image
Daniel Lee

I would also add that data migrations in the schema migrations are a bad idea when your application has a lot of data (think millions of rows). You do not want your schema migration to hang up the process while conducting a long series of inserts (especially if you enabled auto-migration in your Rails app).