class AddLocationToHearth < ActiveRecord::Migration[6.1] def change add_reference :hearths, :location, foreign_key: true Hearth.all.each do |hearth| hearth.update(location: Location.find_by_gid("floret")) end change_column :hearths, :location_id, :bigint, null: false end end