You are here

public static function MigrateDestinationCommerceProductType::getKeySchema in Commerce Migrate 7

File

plugins/destinations/commerce_product_type.inc, line 12
Support for commerce product types.

Class

MigrateDestinationCommerceProductType
Destination class implementing migration into commerce product types.

Code

public static function getKeySchema() {
  return array(
    'type' => array(
      'type' => 'varchar',
      'length' => 32,
      'not null' => TRUE,
      'description' => 'The product type identifier.',
    ),
  );
}