public static function MigrateDestinationVariable::getKeySchema in Migrate 7.2
File
- plugins/
destinations/ variable.inc, line 13 - Support for variable destinations.
Class
- MigrateDestinationVariable
- Destination class implementing migration into {variable}.
Code
public static function getKeySchema() {
return array(
'name' => array(
'description' => 'The name of the variable.',
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
);
}