class CreateContabilidadeConfiguracoesDeFolha < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_configuracoes_de_folha do |t|
      t.integer :orcamento_id
      t.integer :mes_de_referencia
      t.date :data_do_fechamento

      t.timestamps
    end
  end
end
