20090503121510_drop_members_role_id.rb
9 lines
| 166 B
| text/x-ruby
|
RubyLexer
|
r2627 | class DropMembersRoleId < ActiveRecord::Migration | ||
def self.up | ||||
remove_column :members, :role_id | ||||
end | ||||
def self.down | ||||
raise IrreversibleMigration | ||||
end | ||||
end | ||||