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

11 lines
218 B
Ruby

# -*- encoding : utf-8 -*-
class AddGlobalRoleToUsers < ActiveRecord::Migration
def self.up
add_column :users, :global_role_id, :integer
end
def self.down
remove_column :users, :global_role_id
end
end