suitepro/db/migrate/20090503121510_drop_members_role_id.rb
2020-11-22 21:20:06 +01:00

9 lines
171 B
Ruby

class DropMembersRoleId < ActiveRecord::Migration[4.2]
def self.up
remove_column :members, :role_id
end
def self.down
raise IrreversibleMigration
end
end