# -*- coding: utf-8 -*-
class AddIncomeIdToCategory < ActiveRecord::Migration
  def self.up
    add_column :category, :income_id, :integer, :default => 78
  end

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