I created a new Drupal 7 installation using the minimal mode, and at the end of the installation, on the site first load, the shortcut_set table had not been created causing a fatal error to be displayed instead of the front page.

Base table or view not found: 1146 Table '$db.shortcut_set

I was able to resolve this by running this MySQL query based on another installation:

CREATE TABLE `shortcut_set` (
`set_name` varchar( 32 ) NOT NULL DEFAULT '' COMMENT 'Primary Key: The menu_links.menu_name under which the set’s links are stored.',
`title` varchar( 255 ) NOT NULL DEFAULT '' COMMENT 'The title of the set.',
PRIMARY KEY ( `set_name` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COMMENT = 'Stores information about sets of shortcuts links.'

Drupal version: 7.x-dev (May 16 2013)
phpinfo()