You are here

function pmnote_migrate_update_could_be_performed in Drupal PM (Project Management) 7.3

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

Check if migration need to be performed.

1 call to pmnote_migrate_update_could_be_performed()
pmnote_update_7104 in pmnote/pmnote.install
Migrate PM Note nodes to field_api fields.

File

pmnote/includes/pmnote.migrate.inc, line 41
Migration functions for the PM Note module.

Code

function pmnote_migrate_update_could_be_performed() {
  if (db_table_exists('pmnote')) {
    return TRUE;
  }
  return FALSE;
}