class AddClazzIdToBusiness < ActiveRecord::Migration[5.2] def change add_column :educode_sales_businesses, :clazz_id, :integer EducodeSales::Business.all.each do |d| d.update(clazz_id: d.last_follow_up&.clazz_id) end end end