ruby
22 lines · 7 steps
How to backfill a column safely in Rails
A batched migration fills a new full_name column without locking the whole users table.
Explained by
highlit
1class BackfillUsersFullName < ActiveRecord::Migration[7.1]
2 disable_ddl_transaction!
3
4 BATCH_SIZE = 5_000
5
6 class User < ActiveRecord::Base
7 self.table_name = :users
8 end
9
10 def up
11 User.unscoped.where(full_name: nil).in_batches(of: BATCH_SIZE) do |relation|
12 relation.update_all("full_name = TRIM(CONCAT(first_name, ' ', last_name))")
13 sleep(0.05)
14 end
15 end
16
17 def down
18 User.unscoped.where.not(full_name: nil).in_batches(of: BATCH_SIZE) do |relation|
19 relation.update_all(full_name: nil)
20 end
21 end
22end
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Backfilling large tables in bounded batches keeps locks short and avoids blocking production traffic.
- 2Defining a lightweight model inside the migration insulates it from later changes to the real class.
- 3A reversible migration pairs its up-transformation with a down that returns the column to its prior state.
Related explainers
ruby
class ProjectsController < ApplicationController def new @project = current_account.projects.build load_form_collections
The new/create pattern in a Rails controller
mvc
strong-parameters
tenant-scoping
Intermediate
7 steps
ruby
class Membership < ApplicationRecord belongs_to :organization belongs_to :user
Enforcing scoped uniqueness in Rails
validations
uniqueness
callbacks
Intermediate
8 steps
python
from flask import Blueprint, jsonify from sqlalchemy import text from sqlalchemy.exc import SQLAlchemyError
Building a health check endpoint in Flask
health-check
blueprint
error-handling
Intermediate
6 steps
ruby
class WebhookSignatureConstraint def initialize(provider) @provider = provider end
Verifying webhook signatures with Rails routing constraints
routing constraints
hmac
webhooks
Advanced
7 steps
ruby
module UniqueJob extend ActiveSupport::Concern class_methods do
Deduplicating Active Job enqueues in Rails
concurrency
idempotency
caching
Advanced
9 steps
ruby
class OrderMailerPreview < ActionMailer::Preview def confirmation OrderMailer.confirmation(sample_order) end
Previewing Rails mailers with sample data
mailer-previews
test-fixtures
in-memory-objects
Beginner
6 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/how-to-backfill-a-column-safely-in-rails-explained-ruby-4685/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.