skip to Main Content

Magento 2 InstallSchema method not executed

On my own Magento 2 custom module, I want to install a custom database table. This is the InstallSchema class code: <?php namespace MyVendorMyModuleSetup; use MagentoFrameworkSetupInstallSchemaInterface; use MagentoFrameworkSetupModuleContextInterface; use MagentoFrameworkSetupSchemaSetupInterface; class InstallSchema implements InstallSchemaInterface { /** * @inheritdoc */ public…

VIEW QUESTION
Back To Top
Search