function fb_app_update_6100 in Drupal for Facebook 6.3
Same name and namespace in other branches
- 6.2 fb_app.install \fb_app_update_6100()
File
- ./
fb_app.install, line 96 - Installs database tables and settings required by fb_app module.
Code
function fb_app_update_6100() {
// Add id field
$ret = array();
db_add_field($ret, 'fb_app', 'id', array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
));
return $ret;
}