マイグレーションアップ時にのみ実行される処理
適応バージョン
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
マイグレーションアップ時にのみ実行される処理
使い方
up_only(ブロック引数)
例
class AddPublishedToPosts < ActiveRecord::Migration[7.0]
def change
add_column :posts, :published, :boolean, default: false
up_only do
execute "update posts set published = 'true'"
end
end
end