summaryrefslogtreecommitdiff
path: root/db/migrate/20111218145713_add_days_till_auto_delete_to_fax_accounts.rb
blob: 0df0965235cbf4a757641d39317a4f96f9fe98de (plain)
1
2
3
4
5
6
class AddDaysTillAutoDeleteToFaxAccounts < ActiveRecord::Migration
  def change
    add_column :fax_accounts, :days_till_auto_delete, :integer
    remove_column :fax_accounts, :delete_after_email
  end
end