Magento-lts: Mage\Customer\sql\customer_setup\upgrade-1.6.2.0.4-1.6.2.0.5.php doesn't expect: "sample_data"

Created on 10 Dec 2016  路  2Comments  路  Source: OpenMage/magento-lts

Installer error in with: magento-sample-data-1.9.2.4-2016-10-11-07-38-13

in:
\app\code\core\Mage\Customer\sql\customer_setup\upgrade-1.6.2.0.4-1.6.2.0.5.php

$table = $installer->getConnection()
    ->newTable($installer->getTable('customer/flowpassword'))
    ->addColumn('flowpassword_id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(

fix:

$installer->startSetup();
if (!$installer->getConnection()->tableColumnExists($installer->getTable('customer/flowpassword'), 'flowpassword_id')) {
  $table = $installer->getConnection()

Most helpful comment

The project is not dead, we just have limited resources and rely heavily on the community to submit PRs and not just report issues. Please submit a PR instead of an issue, it will take you about the same amount of time and the commit will be attributed to yourself. Thanks!

All 2 comments

-dead project-

The project is not dead, we just have limited resources and rely heavily on the community to submit PRs and not just report issues. Please submit a PR instead of an issue, it will take you about the same amount of time and the commit will be attributed to yourself. Thanks!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

leganzaro picture leganzaro  路  3Comments

Flyingmana picture Flyingmana  路  7Comments

seansan picture seansan  路  6Comments

rjocoleman picture rjocoleman  路  6Comments

ioweb-gr picture ioweb-gr  路  7Comments