public static function MigrateDestinationReservation::getKeySchema in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3
Gets the schema for the base key(s) of an entity type.
Parameters
string $entity_type: A Drupal entity type.
Overrides MigrateDestinationEntityAPI::getKeySchema
File
- merci_migrate/
merci_reservation.inc, line 116
Class
Code
public static function getKeySchema() {
return array(
'id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'Primary Key: Unique ID.',
),
);
}