class CreatePatrimonioItemDaDevolucaoDeBensPatrimoniais < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_itens_da_devolucao_de_bens_patrimoniais do |t|
      t.bigint :devolucao_de_bem_patrimonial_id
      t.bigint :bem_patrimonial_id

      t.timestamps
    end

    add_column :patrimonio_bens_patrimoniais, :status_complementar, :integer
  end
end
