rosa-build/db/migrate/20111023154130_add_global_r...

10 lines
211 B
Ruby

class AddGlobalRoleToGroups < ActiveRecord::Migration
def self.up
add_column :groups, :global_role_id, :integer, references: nil
end
def self.down
remove_column :groups, :global_role_id
end
end