I am trying to recover from the shrapnel laden reality of a custom module (module builder) installation gone awry. I tried installing the module which exploded in my face in the middle of the install through module loader. I believe it had something to do with the excessive use of _ in the table definitions, but it's hard to tell.
Anyway the module did not completely or even moderately uninstall when because it never completed installing. So I had to get my hands dirty and do the deed manually. I have successfully completed this kind of bomb squad mission before but this time I am having a problem. To the best of my knowledge all pieces of the module have been removed including all referneces in:
./custom/application/Ext/Include/modules.ext.php
/custom/modules/<module>
Related Modules:
/custom/Extension/modules/Accounts/Vardefs
/custom/Extension/modules/Opportunities/Vardefs
There was probably more as I went picking around...
The problem is I am still getting an error when doing a rebuild saying the Vardefs and the database don't match and it wants to create some tables that I removed. Here is the output:
Where could the Vardefs be hiding? I have cleared the cache many times, but the error remains every time I do a quick repair/rebuild.Code:/* Table : a_ord_apprader_accounts */ /* MISSING TABLE: a_ord_apprader_accounts */ CREATE TABLE a_ord_apprader_accounts (id varchar(36) NOT NULL ,date_modified datetime NULL ,deleted bool DEFAULT '0' NOT NULL ,a_ord_appraisal_order_ida varchar(36) NULL ,accounts_idb varchar(36) NULL , PRIMARY KEY (id), KEY a_ord_apprader_accounts_ida1 (a_ord_appraisal_order_ida), KEY a_ord_apprader_accounts_idb2 (accounts_idb), KEY a_ord_apprader_accounts_idc3 (a_ord_appraisal_order_ida, accounts_idb)) CHARACTER SET utf8 COLLATE utf8_general_ci; /* Table : a_ord_apprapportunities */ /* MISSING TABLE: a_ord_apprapportunities */ CREATE TABLE a_ord_apprapportunities (id varchar(36) NOT NULL ,date_modified datetime NULL ,deleted bool DEFAULT '0' NOT NULL ,a_ord_appraisal_order_ida varchar(36) NULL ,opportunities_idb varchar(36) NULL , PRIMARY KEY (id), KEY a_ord_apprapportunities_ida1 (a_ord_appraisal_order_ida), KEY a_ord_apprapportunities_idb2 (opportunities_idb), KEY a_ord_apprapportunities_idc3 (a_ord_appraisal_order_ida, opportunities_idb)) CHARACTER SET utf8 COLLATE utf8_general_ci; /* Table : a_ord_apprasal_accounts */ /* MISSING TABLE: a_ord_apprasal_accounts */ CREATE TABLE a_ord_apprasal_accounts (id varchar(36) NOT NULL ,date_modified datetime NULL ,deleted bool DEFAULT '0' NOT NULL ,a_ord_appraisal_ida varchar(36) NULL ,accounts_idb varchar(36) NULL , PRIMARY KEY (id), KEY a_ord_apprasal_accounts_ida1 (a_ord_appraisal_ida), KEY a_ord_apprasal_accounts_idb2 (accounts_idb), KEY a_ord_apprasal_accounts_idc3 (a_ord_appraisal_ida, accounts_idb)) CHARACTER SET utf8 COLLATE utf8_general_ci; /* Table : a_ord_apprapportunities */ /* MISSING TABLE: a_ord_apprapportunities */ CREATE TABLE a_ord_apprapportunities (id varchar(36) NOT NULL ,date_modified datetime NULL ,deleted bool DEFAULT '0' NOT NULL ,a_ord_appraisal_ida varchar(36) NULL ,opportunities_idb varchar(36) NULL , PRIMARY KEY (id), KEY a_ord_apprapportunities_ida1 (a_ord_appraisal_ida), KEY a_ord_apprapportunities_idb2 (opportunities_idb), KEY a_ord_apprapportunities_idc3 (a_ord_appraisal_ida, opportunities_idb)) CHARACTER SET utf8 COLLATE utf8_general_ci;


LinkBack URL
About LinkBacks



Reply With Quote
Bookmarks