Skip to content

Instantly share code, notes, and snippets.

@7rin0
Created May 16, 2017 14:11
Show Gist options
  • Save 7rin0/1e49266782d7f321e6c2d47e2bbd8860 to your computer and use it in GitHub Desktop.
Save 7rin0/1e49266782d7f321e6c2d47e2bbd8860 to your computer and use it in GitHub Desktop.
"Base table or view not found: 1146 Table field_dummy_drupal_8_2_3 doesnt exist ..."
/** Connect to database and generate dummy tables to fix this issue. **/
CREATE TABLE `node__field_dummy_drupal_8_2_3` (`fid` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(128) CHARACTER
SET ascii NOT NULL,
`pid` varchar(50) NOT NULL,
`url` varchar(191) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`metadata` longtext,
`created` int(11) DEFAULT NULL,
`deleted` int(11) DEFAULT NULL,
PRIMARY KEY (`fid`),UNIQUE KEY `font_field__uuid__value` (`uuid`),
UNIQUE KEY `url` (`url`),
KEY `name` (`name`(191)),
KEY `pid` (`pid`)) ENGINE=InnoDB AUTO_INCREMENT=885 DEFAULT CHARSET=utf8mb4 COMMENT='Dummy table to skip errors ...';
/** Connect to database and generate dummy tables to fix this issue. **/
CREATE TABLE `node_revision__field_dummy_drupal_8_2_3` (`fid` int(11) NOT NULL AUTO_INCREMENT,
\ `uuid` varchar(128) CHARACTER
SET ascii NOT NULL,
`pid` varchar(50) NOT NULL,
`url` varchar(191) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`metadata` longtext,
`created` int(11) DEFAULT NULL,
`deleted` int(11) DEFAULT NULL,
PRIMARY KEY (`fid`),UNIQUE KEY `font_field__uuid__value` (`uuid`),
UNIQUE KEY `url` (`url`),
KEY `name` (`name`(191)),
KEY `pid` (`pid`)) ENGINE=InnoDB AUTO_INCREMENT=885 DEFAULT CHARSET=utf8mb4 COMMENT='Dummy table to skip errors ...';
/** Then ... **/
drush entup -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment