about summary refs log tree commit diff
path: root/db/migrate/20190509164727_drop_subscriptions.rb
blob: fec39523593780f84b0f74ccbef42203c3926408 (plain) (blame)
1
2
3
4
5
6
7
class DropSubscriptions < ActiveRecord::Migration[5.2]
  def change
    safety_assured {
      drop_table :subscriptions
    }
  end
end