Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ccyrille/22468e003dc87d7408a6ed61a6b83200 to your computer and use it in GitHub Desktop.
Save ccyrille/22468e003dc87d7408a6ed61a6b83200 to your computer and use it in GitHub Desktop.
class PopulateUsersNewColumnDefaultValue < ActiveRecord::Migration
disable_ddl_transaction!
def up
User.find_in_batches do |users|
User.where(id: users.map(&:id), new_column: nil)
.update_all(new_column: "default_value")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment