You are here

function support_update_7003 in Support Ticketing System 7

Ensure support_update_6008 has run: Remove unnecessary 'active' field from {support_assigned} table.

File

./support.install, line 738
Install, update and uninstall functions for the ._support module.

Code

function support_update_7003() {
  if (db_field_exists('support_assigned', 'active')) {
    support_update_6008();
  }
}