Hi @kasumo,
Maybe you got an error at the installation?
Try to create the table with this script:
CREATE TABLE IF NOT EXISTS `design_config_grid_flat` (
`entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
`store_website_id` int(11) DEFAULT NULL COMMENT 'Store_website_id',
`store_group_id` int(11) DEFAULT NULL COMMENT 'Store_group_id',
`store_id` int(11) DEFAULT NULL COMMENT 'Store_id',
`theme_theme_id` varchar(255) DEFAULT NULL COMMENT 'Theme_theme_id'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='design_config_grid_flat';
ALTER TABLE `design_config_grid_flat`
ADD PRIMARY KEY (`entity_id`), ADD KEY `DESIGN_CONFIG_GRID_FLAT_STORE_WEBSITE_ID` (`store_website_id`), ADD KEY `DESIGN_CONFIG_GRID_FLAT_STORE_GROUP_ID` (`store_group_id`), ADD KEY `DESIGN_CONFIG_GRID_FLAT_STORE_ID` (`store_id`), ADD FULLTEXT KEY `DESIGN_CONFIG_GRID_FLAT_THEME_THEME_ID` (`theme_theme_id`);
That's from a Magento 2.1.9 vanilla installation.