You are here

function pmteam_migrate_update_could_be_performed in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pmteam/includes/pmteam.migrate.inc \pmteam_migrate_update_could_be_performed()
  2. 7.2 pmteam/includes/pmteam.migrate.inc \pmteam_migrate_update_could_be_performed()

Check if migration need to be performed.

1 call to pmteam_migrate_update_could_be_performed()
pmteam_update_7103 in pmteam/pmteam.install
Migrate PM Team nodes to field_api fields.

File

pmteam/includes/pmteam.migrate.inc, line 40
Migration functions for the PM Team module.

Code

function pmteam_migrate_update_could_be_performed() {
  if (db_table_exists('pmteam')) {
    return TRUE;
  }
  return FALSE;
}