You are here

function saml_sp_update_7208 in SAML Service Provider 7.2

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 290
Hook_requirements for the SAML Service Provider module.

Code

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