You are here

function uc_views_uninstall in Ubercart Views 6

Same name and namespace in other branches
  1. 6.2 uc_views.install \uc_views_uninstall()

Implentation of the hook_uninstall().

File

./uc_views.install, line 16

Code

function uc_views_uninstall() {

  //Remove views created during install
  db_query("DROP VIEW uc_order_products_qty_vw");
  db_query("DROP VIEW uc_order_products_user_vw");
  db_query("DROP VIEW uc_order_products_pair_vw");
}