summaryrefslogtreecommitdiffstats
path: root/db/migrate/20090503121510_drop_members_role_id.rb
blob: c1caa70e8d13b8d2415f8c32827357e540ff3f41 (plain)
1
2
3
4
5
6
7
8
9
class DropMembersRoleId < ActiveRecord::Migration[4.2]
  def self.up
    remove_column :members, :role_id
  end

  def self.down
    raise ActiveRecord::IrreversibleMigration
  end
end