about summary refs log tree commit diff
path: root/db/migrate/20190509163236_drop_ostatus.rb
blob: 6ff25dc2e5e2224f0f221b9a1802f51c6aefea90 (plain) (blame)
1
2
3
4
5
6
7
8
9
class DropOStatus < ActiveRecord::Migration[5.2]
  def change
    safety_assured {
      remove_column :accounts, :salmon_url
      remove_column :accounts, :hub_url
      remove_column :accounts, :subscription_expires_at
    }
  end
end