ActiveRecoredのmigrationでdrop tableをする
ActiveRecoredのmigrationを使ってdrop tableをする場合のサンプル 一様中身は空になってしまうが、rollbackで戻せるようにしている。
class DropAdminUsers < ActiveRecord::Migration[5.0] def change drop_table :admin_users do |t| t.string :name, null: false t.string :email, null: false, index: true t.timestamps null: false end end end