about summary refs log tree commit diff
path: root/db/migrate/20190508075055_remove_protocol_from_accounts.rb
blob: c644272d93d731e612eb46bf0b652b84582ff664 (plain) (blame)
1
2
3
4
5
class RemoveProtocolFromAccounts < ActiveRecord::Migration[5.2]
  def change
    safety_assured { remove_column :accounts, :protocol }
  end
end