You are here

function discussthis_update_6002 in Discuss This! 6

\brief Implementation of hook_update_#()

This update creates the new discussthis_forums table. I have re-established the use of this table.

File

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

Code

function discussthis_update_6002() {
  $ret = array();
  $schema = discussthis_schema();
  db_create_table($ret, 'discussthis_forums', $schema['discussthis_forums']);
  return $ret;
}