You are here

public static function MigrateDestinationComment::getKeySchema in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 plugins/destinations/comment.inc \MigrateDestinationComment::getKeySchema()
3 calls to MigrateDestinationComment::getKeySchema()
BeerCommentMigration::__construct in migrate_example/beer.inc
General initialization of a Migration object.
WineCommentMigration::__construct in migrate_example/wine.inc
General initialization of a Migration object.
WineCommentUpdatesMigration::__construct in migrate_example/wine.inc
General initialization of a Migration object.

File

plugins/destinations/comment.inc, line 16
Support for comment destinations.

Class

MigrateDestinationComment
Destination class implementing migration into comments.

Code

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