class CreatePncpConfiguracoes < ActiveRecord::Migration[5.2]
  def change
    create_table :pncp_configuracoes do |t|

      t.string :nome
      t.string :valor
      t.boolean :ativo, default: true
  
    end
  end
end
