Magento – Magento 1.9 custom module version not upgrading

magento-1.9moduleupgrade-script

Am trying to upgrade a module. The core_resource table is not updating and sql resource is not running. I have tried lots of possibilities.

My config.xml

 <modules>
  <ITwebexperts_Request4quote>
        <version>2.2.0.20180430</version>
    </ITwebexperts_Request4quote>
 </modules>

My upgrade script name

  mysql4-upgrade-2.2.20170523-2.2.0.20180430.php

current row in core_resource

   request4quote_setup | 2.2.20170523 | 2.2.20170523

please help me out

Best Answer

Since you are trying to upgrade module version from 2.2.20170523, the upgraded version should be like 2.2.20180523 or 2.2.20170524.

You have used 2.2.0.20180430 (Note the 0 in 2.2.0.*), which makes the version number less than the version **2.2.20170523.

I hope my answer is clear to you.

Related Topic