You are here

function discussthis_update_6001 in Discuss This! 6

\brief Implementation of hook_update_#()

Remove the old discussthis_forum.

File

./discussthis.install, line 100
Installtion functions for Discuss This! module.

Code

function discussthis_update_6001() {
  $ret = array();
  db_drop_table($ret, 'discussthis_forums');
  return $ret;
}