class CreatePatrimonioLocalizacoesDosBens < ActiveRecord::Migration[5.2]
  def change
    create_table :patrimonio_localizacoes_dos_bens do |t|
      t.bigint :bem_patrimonial_id
      t.bigint :centro_de_custo_id
      t.bigint :agente_publico_municipal_id
      t.integer :status
      t.string :descricao
      t.string :endereco
      t.string :numero
      t.string :complemento
      t.string :bairro
      t.string :cep

      t.timestamps
    end
  end
end
