# -*- coding: utf-8 -*-
class AddQuestBonusToCategory < ActiveRecord::Migration
  def self.up
#    add_column :category, :quest_bonus, :integer    
#    Category.update_all("quest_bonus = 2", "department IN ('alp', 'corp', 'mod')")
  end

  def self.down
    remove_column :category, :quest_bonus
  end
end
