class CreateWorkingDays < ActiveRecord::Migration
  def self.up
    create_table :working_days do |t|
      t.column :month, :date
      t.column :working_days, :int
    end
  end

  def self.down
    drop_table :working_days
  end
end
