class CreateTcmLotes < ActiveRecord::Migration[4.2]
  def change
    create_table :tcm_lotes do |t|
      t.integer :orcamento_id
      t.integer :tipo
      t.integer :situacao

      t.timestamps null: false
    end
  end
end
