Dari Rel v4.2 Anda dapat melakukan ini:
Buat migrasi untuk memperbarui kunci asing
20160321165946_update_foreign_key.rb
class UpdateForeignKey < ActiveRecord::Migration
def change
# remove the old foreign_key
remove_foreign_key :posts, :users
# add the new foreign_key
add_foreign_key :posts, :users, on_delete: :cascade
end
end