<?php

/**
 * @file
 * Install, update and uninstall functions for the customerroralt module.
 */

/**
 * Implements hook_uninstall().
 */
function customerroralt_uninstall() {
  db_delete('variable')
    ->condition('name', 'customerroralt_%', 'LIKE')
    ->execute();
}
