If you’re absolutely sure you want to do that, you can do this in your server command line
./launcher enter app
rails c
PluginStoreRow.where(plugin_name: 'custom_wizard').destroy_all
Note that this will not destroy all logs associated with the custom wizard. To do that you can do the following. There shouldn’t be any reason to destroy logs however, unless you have some kind of privacy concern.
./launcher enter app
rails c
PluginStoreRow.where(plugin_name: 'custom_wizard_log').destroy_all
If you have time please make a post here describing the issue as you see it: Pavilion.
I would also just note that the Custom Wizard Plugin has a “Manager” which you can use to essentially do the same thing. I’m interested to learn what issues you had, but let’s continue the conversation over at thepavilion.io.