You are here

public static function MigrateDestinationRole::getKeySchema in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/destinations/user.inc \MigrateDestinationRole::getKeySchema()

Get the key definition for the role table.

Parameters

$dummy: PHP is picky - it throws E_STRICT notices if we don't have a parameter because MigrateDestinationTable has one.

Overrides MigrateDestinationTable::getKeySchema

1 call to MigrateDestinationRole::getKeySchema()
WineRoleMigration::__construct in migrate_example/wine.inc
General initialization of a Migration object.

File

plugins/destinations/user.inc, line 249
Support for user destinations.

Class

MigrateDestinationRole

Code

public static function getKeySchema($dummy = NULL) {
  return MigrateDestinationTable::getKeySchema('role');
}