class CreateContabilidadePagamentosDasRetencoes < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_pagamentos_das_retencoes do |t|
      t.decimal :valor
      t.bigint :retencao_id
      t.bigint :conta_origem_id
      t.bigint :conta_destino_id

      t.timestamps
    end
  end
end
