You are here

public static function MigrateDestinationCustomBlock::getKeySchema in Migrate 7.2

File

plugins/destinations/block_custom.inc, line 13
Support for custom block destinations.

Class

MigrateDestinationCustomBlock
Destination class implementing migration into {block_custom}.

Code

public static function getKeySchema() {
  return array(
    'bid' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'description' => 'ID of destination custom block',
    ),
  );
}