function fb_app_update_6202 in Drupal for Facebook 6.3
Same name and namespace in other branches
- 6.2 fb_app.install \fb_app_update_6202()
File
- ./
fb_app.install, line 117 - Installs database tables and settings required by fb_app module.
Code
function fb_app_update_6202() {
// canvas is too important, let's support it.
$ret = array();
db_add_field($ret, 'fb_app', 'canvas', array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
));
drupal_set_message(t('If any of your Facebook Applications support canvas pages, go to those applications, click edit and submit. This must be done manually. Sorry for the inconvenience.'));
return $ret;
}