SRC:https://alanstorm.com/reinstalling_magento_modules/
Just a quick note, but it seems that despite having the whole
+————————-+———+ | code | version | +————————-+———+ | adminnotification_setup | 1.0.0 | | admin_setup | 0.7.1 | | etc … | … | +————————-+———+ mysql>
Just delete your module from this table and then clear Magento’s cache. That should be all it takes to re-load the new module into the system.
Update: What I said above about the versions being meaningless isn’t correct. The mysql4-install-X.X.X.php files will only be run once by the system. However, by changing the version value in your XML config, you’re telling the system which install file it should be looking for. So, for example
//this in your config
//would load this sql install file mysql4-install-0.2.1.php …
When you’re deploying new versions of a module, be sure to change the version of your install script. During development though, it’s still best to just delete the record from your core_resource table.