Railsドキュメント

リバート

適応バージョン

説明

マイグレーションのロールバック

使い方

revert(マイグレーションクラス.., ブロック引数)

class FixTLMigration < ActiveRecord::Migration[7.0]
    def change
        revert do
            create_table(:horses) do |t|
                t.text :content
                t.datetime :remind_at
            end
        end
        create_table(:apples) do |t|
            t.string :variety
        end
    end
end

ソースコード