20111009111204_remove_allow_create_repo_from_user.rb 234 Bytes
class RemoveAllowCreateRepoFromUser < ActiveRecord::Migration
  def up
    remove_column :users, :allowed_create_repo
  end

  def down
    add_column :users, :allowed_create_repo, :boolean, :default => true, :null => false
  end
end