You are here

function multiblock_uninstall in MultiBlock 5

Same name and namespace in other branches
  1. 6 multiblock.install \multiblock_uninstall()

File

./multiblock.install, line 30

Code

function multiblock_uninstall() {
  db_query("DROP TABLE {multiblock}");
  if ($GLOBALS['db_type'] == 'pgsql') {
    db_query("DROP SEQUENCE {multiblock}_delta_seq}");
  }
}