You are here

function acl_uninstall in ACL 5

Same name and namespace in other branches
  1. 6 acl.install \acl_uninstall()

File

./acl.install, line 64

Code

function acl_uninstall() {
  if ($GLOBALS['db_type'] == 'pgsql') {
    db_query('DROP INDEX {acl_user}_uid_index');
  }
  db_query('DROP TABLE {acl}');
  db_query('DROP TABLE {acl_user}');
  db_query('DROP TABLE {acl_node}');
}