'The base table for muamba assets.', 'fields' => array( 'nid' => array( 'description' => t('The {node}.nid of the borrowed item.'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'uid' => array( 'description' => t('The {user}.uid requesting an item.'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), ), 'foreign keys' => array( 'node' => array( 'table' => 'node', 'columns' => array('nid' => 'nid'), ), 'requester' => array( 'table' => 'users', 'columns' => array('uid' => 'uid'), ), ), ); return $schema; }