class CreateContabilidadeMapeamentosManuais < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_mapeamentos_manuais do |t|
      t.integer :periodo_matriz_de_saldo_contabil_id
      t.integer :anexo
      t.integer :linha
      t.integer :coluna
      t.integer :mes
      t.integer :tipo
      t.decimal :valor

      t.timestamps
    end
  end
end
