Hi,
i try to develop a module, and it works fine except from the update function in the install file. When i start the update process my module is not even in the list of modules.

My update method looks like this:

function basisFunctions_update_6001() {
$ret = array();
$ret[] = update_sql("CREATE TABLE IF NOT EXISTS ... ");
return $ret;
}

Thanks for your help.
Regards francula

Comments

jaypan’s picture

Is your module named basisFunctions? Is the install file named basisFunctions.install?

Contact me to contract me for D7 -> D10/11 migrations.

francula’s picture

yes. The files is named as you described and the module too. And the install function is called but not the update function