summaryrefslogtreecommitdiff
path: root/db/migrate/20111218143152_add_tenant_id_to_fax_account.rb
blob: 1c352b801912397f6b9fc72cd60f9f322c100ac1 (plain)
1
2
3
4
5
6
class AddTenantIdToFaxAccount < ActiveRecord::Migration
  def change
    add_column :fax_accounts, :tenant_id, :integer
    add_column :fax_accounts, :station_id, :string
  end
end