AbstractInstallSchema.php: line 72
$cmsTableName = $this->getSetupConnection()->getTableName('cms_page');
returns wrong table name if there are used tables with prefixes.
Can be changed to
$cmsTableName = $this->setup->getTable('cms_page');
but not sure if it is perfect solution
AbstractInstallSchema.php: line 72
$cmsTableName = $this->getSetupConnection()->getTableName('cms_page');
returns wrong table name if there are used tables with prefixes.Can be changed to
$cmsTableName = $this->setup->getTable('cms_page');
but not sure if it is perfect solution