view db/migrate/20090503121510_drop_members_role_id.rb @ 250:c90c42a771ec cannam

* Restore further things broken during merge
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 03 Mar 2011 14:38:43 +0000
parents 513646585e45
children
line wrap: on
line source
class DropMembersRoleId < ActiveRecord::Migration
  def self.up
    remove_column :members, :role_id
  end

  def self.down
    raise IrreversibleMigration
  end
end