class CreatePatrimonioDevolucaoDeBensPatrimoniais < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_devolucao_de_bens_patrimoniais do |t|
      t.date :data_da_devolucao
      t.string :numero_da_devolucao
      t.bigint :origem_id
      t.string :origem_type
      t.bigint :orcamento_id
      t.integer :status
      t.integer :tipo
      t.string :responsavel
      t.string :observacao

      t.timestamps
    end
  end
end
