function faq_ask_update_7001 in FAQ_Ask 7
Adding the term index table for unpublished nodes
File
- ./
faq_ask.install, line 150 - This module is an add-on to the FAQ module that allows users with the 'ask question' permission to create a question which will be queued for an 'expert' to answer.
Code
function faq_ask_update_7001() {
$ret = array();
db_create_table('faq_ask_term_index', drupal_get_schema_unprocessed('faq_ask', 'faq_ask_term_index'));
return t('Added term index for unpublished nodes');
}