Skip to content

Commit

Permalink
FIX table prefix install issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenix128 committed Sep 12, 2017
1 parent ca1003e commit 32a625b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Setup/UpgradeSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ protected function upgradeTo020000(SchemaSetupInterface $setup)
{
$connection = $setup->getConnection();
$tfaAdminUserTable = $setup->getTable('msp_tfa_user_config');
$adminUserTable = $connection->getTableName('admin_user');
$adminUserTable = $setup->getTable('admin_user');

$table = $setup->getConnection()
->newTable($tfaAdminUserTable)
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="MSP_TwoFactorAuth" setup_version="2.0.10">
<module name="MSP_TwoFactorAuth" setup_version="2.0.11">
<sequence>
<module name="MSP_SecuritySuiteCommon"/>
<module name="Magento_User"/>
Expand Down

0 comments on commit 32a625b

Please sign in to comment.