I've read a lot of related questions, but my issue falls in between the cracks of what's already been covered, so:
I am modifying a module that is only available via Magento Connect. During setup, the module adds an attribute to the customer.
I need to add another attribute to the customer.
I've modified the code to do so, but I can't figure out how to "re-fresh" or "re-install" the module. Obviously, I can't use Magento Connect because that only provides the un-modified code.
What I've tried:
I've cleared the Magento Cache entirely, no luck.
The closest (I think?) I've come is by removing the module's "successfully installed" entry in the
core_resource
table. This seemed to re-start the installation but then it ran into a unique constraint problem ... probably because I don't know all of the tables created by the module during the initial install.
Questions:
If a module adds a customer attribute, what are all the tables that get modified?
Is there another/better way to simply refresh the installation of a module that modifies the database?
Thank you!