You are here

public static function MigrateDestinationFlagSimple::getKeySchema in Migrate Extras 7.2

Same name and namespace in other branches
  1. 6.2 flag.inc \MigrateDestinationFlagSimple::getKeySchema()

File

./flag.inc, line 22
Flag module integration

Class

MigrateDestinationFlagSimple
Destination class implementing when you want just an insert into flag_content table.

Code

public static function getKeySchema() {
  return array(
    'fcid' => array(
      'type' => 'int',
      'not null' => TRUE,
    ),
  );
}