function pmnote_migrate_update_could_be_performed in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pmnote/includes/pmnote.migrate.inc \pmnote_migrate_update_could_be_performed()
- 7.3 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;
}