summaryrefslogtreecommitdiff
path: root/db/migrate/20111007110258_remove_position_from_tenant.rb
blob: 141511459d348410afe40e05c6dacf198a549a46 (plain)
1
2
3
4
5
6
7
8
9
class RemovePositionFromTenant < ActiveRecord::Migration
  def up
    remove_column :tenants, :position
  end

  def down
    add_column :tenants, :position, :integer
  end
end