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