You are here

function sheetnode_uninstall in Sheetnode 5

Same name and namespace in other branches
  1. 6 sheetnode.install \sheetnode_uninstall()

File

./sheetnode.install, line 26

Code

function sheetnode_uninstall() {
  db_query("DROP TABLE {sheetnode}");
  db_query("DROP TABLE {sheetnode_template}");
  db_query("DELETE FROM {variable} WHERE name LIKE 'sheetnode_%'");
}