Railsドキュメント

カラムをバージョンダウン

適応バージョン

説明

データベースのカラムをバージョンダウン
ロールバックできない処理の際に主に使用

使い方

def down
end

def down
  drop_table :pages
end

ソースコード