なるようになるブログ

読書感想文かrailsについてかrubyについてか

rails commit log流し読み(2025/11/21)

2025/11/21分のコミットです。

CHANGELOGにのったコミットは以下の通りです。

activerecord/CHANGELOG.md


Add support for configuring migration strategy on a per-adapter basis.

Active Recordの修正です。

migration実行時に任意の処理を実行出来るようにするmigration strategyが、グローバルレベルでしか設定出来なかったのを、adapetr毎に指定出来るよう修正しています。複数DBでDB毎に違うadapterを使用しているような場合に、特定のadapterでのみ処理を変更出来るようにする為。

class CustomPostgresStrategy < ActiveRecord::Migration::DefaultStrategy
  def drop_table(*)
    # PostgreSQLでのみ実行するロジック
  end
end

ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.migration_strategy = CustomPostgresStrategy

Fix typo in AR changelog [ci skip]

activerecord/CHANGELOG.mdの修正です。

CHANGELOG内のタイポを修正しています。