You are here

public static function MigrateDestinationNodeRevision::getKeySchema in Migrate 7.2

Get key schema for the node revision destination.

Return value

array Returns the key schema.

Overrides MigrateDestinationNode::getKeySchema

See also

MigrateDestination::getKeySchema

File

plugins/destinations/node.inc, line 362
Support for node destinations.

Class

MigrateDestinationNodeRevision
Allows you to import revisions.

Code

public static function getKeySchema() {
  return array(
    'vid' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'description' => 'ID of destination node revision',
    ),
  );
}