class CreateGestaoDeEstoqueManutencoesDoExtintor < ActiveRecord::Migration[5.2]
  def change
    create_table :gestao_de_estoque_manutencoes_do_extintor do |t|
      t.bigint :controle_de_extintor_id
      t.date :data_da_manutencao
      t.integer :tipo_de_manutencao
      t.integer :tipo_de_prazo
      t.integer :prazo

      t.timestamps
    end
  end
end
