class RenameCafIdToObjectiveId < ActiveRecord::Migration[7.0] def change remove_foreign_key :principles, :cafs remove_index :principles, :caf_id rename_column :principles, :caf_id, :objective_id add_foreign_key :principles, :objectives end end