class CreateContabilidadeDetalhamentosPorSubelemento < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_detalhamentos_por_subelementos do |t|
      t.integer :liquidacao_id
      t.integer :conta_id
      t.decimal :valor

      t.timestamps
    end
  end
end
