class CreatePatrimonioTransferencias < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_transferencias do |t|
      t.string :numero_da_transferencia
      t.date :data_da_transferencia
      t.integer :status
      t.integer :tipo
      t.bigint :orcamento_id
      t.bigint :unidade_gestora_origem_id
      t.bigint :responsavel_origem_id
      t.bigint :centro_de_custo_origem_id
      t.text :historico

      t.timestamps
    end

  end
end
