function faq_ask_update_6101 in FAQ_Ask 7
Same name and namespace in other branches
- 6.2 faq_ask.install \faq_ask_update_6101()
Create notification table
File
- ./
faq_ask.install, line 139 - 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_6101() {
db_create_table('faq_ask', drupal_get_schema_unprocessed('faq_ask', 'faq_ask_notify'));
return t('Added notification table');
}