class CreatePatrimonioValoresDosLotesDoLeilao < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_valores_dos_lotes_do_leilao do |t|
      t.decimal :valor_do_lote, :precision => 18, :scale => 2
      t.integer :tipo_de_valor
      t.bigint :comissao_id
      t.bigint :lote_do_leilao_id
      t.date :data_do_valor


      t.timestamps
    end
  end
end
