function uc_restrict_qty_uninstall in Ubercart Restrict Qty 7
Same name and namespace in other branches
- 6.2 uc_restrict_qty.install \uc_restrict_qty_uninstall()
Implements hook_uninstall().
Remove the variables and schema corresponding to the uc_restrict_qty module.
File
- ./
uc_restrict_qty.install, line 72 - uc_restrict_qty module install file.
Code
function uc_restrict_qty_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'uc_restrict_qty_%%'");
}