You are here

function saml_sp_update_7301 in SAML Service Provider 7.3

check to see if saml_sp_request_tracking_cache table exists, if so remove it as it was finally removed from the schema

File

./saml_sp.install, line 291
Hook_requirements for the SAML Service Provider module.

Code

function saml_sp_update_7301() {
  if (db_table_exists('saml_sp_request_tracking_cache')) {
    db_drop_table('saml_sp_request_tracking_cache');
  }
}