function faq_ask_update_6101 in FAQ_Ask 6.2
Same name and namespace in other branches
- 7 faq_ask.install \faq_ask_update_6101()
File
- ./
faq_ask.install, line 84 - 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() {
$ret = array();
$schema = faq_ask_schema();
db_create_table($ret, 'faq_ask_notify', $schema['faq_ask_notify']);
return $ret;
}