rastating/wordpress-exploit-framework

View on GitHub
db/migrations/003_add_credential_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

Sequel.migration do
  up do
    alter_table :credentials do
      add_column :type, :string, size: 20
    end
  end

  down do
    drop_column :credentials, :type
  end
end