You are here

public static function MigrateDestinationCRMCoreContact::getKeySchema in CRM Core 7

Provides key schema.

Return value

array Key schema.

1 call to MigrateDestinationCRMCoreContact::getKeySchema()
CRMCoreContactDataDestinationHandler::migrateDestinationMap in modules/crm_core_data_import/plugins/destination/CRMCoreContactDataDestinationHandler.inc
Returns key schema for migration.

File

modules/crm_core_contact/includes/crm_core_contact.migrate.inc, line 19
Class MigrateDestinationCRMCoreContact.

Class

MigrateDestinationCRMCoreContact
CRM Contact destination handler.

Code

public static function getKeySchema() {
  return array(
    'contact_id' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'description' => 'The primary identifier for a contact.',
    ),
  );
}