class CreateContabilidadeDeducoesDePagamento < ActiveRecord::Migration[4.2]
  def change
    create_table :contabilidade_deducoes_de_pagamento do |t|
      t.integer :pagamento_id
      t.integer :classificacao
      t.decimal :valor_da_deducao, precision: 12, scale: 2

      t.timestamps null: false
    end
  end
end
