class CreatePatrimonioLotesDoLeilao < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_lotes_do_leilao do |t|
      t.bigint :leilao_id
      t.integer :status
      t.integer :ordem_lote

      t.timestamps
    end
  end
end
