So, I'm trying to run a setup script with my module. (Magento 1.7) I have this is my modules config.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Sulman_Custompermissions>
<version>1.0.0.0</version>
</Sulman_Custompermissions>
</modules>
<global>
<resources>
<mymodule_setup>
<setup>
<module>Sulman_Custompermissions</module>
</setup>
</mymodule_setup>
</resources>
</global>
</config>
This my file structure for the install script: /app/code/local/Sulman/Custompermissions/sql/mymodule_setup/install-1.0.0.0.php
Then in my install-1.0.0.0.php script simply runs this:
die('here');
The issue is that the install script never seems to get run (nothing dies). BUT There IS a row correctly inserted in to the core_resource table... Any clues? Thanks
(p.s. if there is a record in the core_resource table it is removed before I try to run the script)