Magento模块未添加到core_resource表中

时间:2016-09-28 18:05:38

标签: magento

我正在尝试编写一个在更新模块时必须执行的脚本。我想检查db表B中的版本,但我现在看到该模块没有添加到那里。我在找错了地方,或者我的代码有问题吗?这是配置文件的相关部分:

core_resource

我创建了一个更新文件:/updateMyscript/upgrade-1.0.0.0-1.0.0.1.php

1 个答案:

答案 0 :(得分:0)

如果您的模块已在core_resource上注册,则需要从中删除,以便再次执行安装程序。

如果要更新模块设置,则需要创建该升级文件(upgrade-1.0.0.0-1.0.0.1.php)并更改config.xml上的版本 像这样:

 function checkFirstLetterOfLastName(lastname) {
  if((/^[A-L].+/i).test(lastname)) {
    console.log('starts with A-L');
  }
  else
  {
     console.log('does not starts with A-L');
  }
}

checkFirstLetterOfLastName("hello")

在此之后,你需要从Magento清除缓存。