You are here

public static function MigrateDestinationMenu::getKeySchema in Migrate 7.2

File

plugins/destinations/menu.inc, line 13
Support for menu destinations.

Class

MigrateDestinationMenu
Destination class implementing migration into {menu_custom}.

Code

public static function getKeySchema() {
  return array(
    'menu_name' => array(
      'type' => 'varchar',
      'length' => 32,
      'not null' => TRUE,
      'default' => '',
      'description' => 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.',
    ),
  );
}