You are here

function commerce_uuid_update_7000 in Commerce UUID 7

Remove the commerce_uuid_* sub-modules from the system table.

File

./commerce_uuid.install, line 211

Code

function commerce_uuid_update_7000() {
  $commerce_uuid_modules = array(
    'commerce_uuid_customer',
    'commerce_uuid_line_item',
    'commerce_uuid_order',
    'commerce_uuid_payment',
    'commerce_uuid_product',
  );
  db_delete('system')
    ->condition('type', 'module')
    ->condition('name', $commerce_uuid_modules, 'IN')
    ->execute();
}