I need to add the index back in for 1 table. Where it may or may not exist.
I'm updating an old module where at some point in time the developer removed all indexes from the database modules. This means in the wild, some versions exist with tables and indexes, and some do not.
Can I just do the following and ignore any resulting error, or is there a better way?
I'm updating an old module where at some point in time the developer removed all indexes from the database modules. This means in the wild, some versions exist with tables and indexes, and some do not.
Can I just do the following and ignore any resulting error, or is there a better way?
Code:
<MIVA MvQUERY_Error = "nonfatal, nodisplay"> <MvQUERY NAME = "Merchant" QUERY = "{ 'CREATE INDEX ' ....
Comment