You are here

public static function MigrateDestinationPrivatemsg::getKeySchema in Migrate Extras 6.2

Same name and namespace in other branches
  1. 7.2 privatemsg.inc \MigrateDestinationPrivateMsg::getKeySchema()

File

./privatemsg.inc, line 13
Support for the Privatemsg module.

Class

MigrateDestinationPrivatemsg
Destination class implementing

Code

public static function getKeySchema() {
  return array(
    'id' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'description' => 'ID of private message',
    ),
  );
}