You are here

function fb_app_update_6205 in Drupal for Facebook 6.3

Same name and namespace in other branches
  1. 6.2 fb_app.install \fb_app_update_6205()

File

./fb_app.install, line 160
Installs database tables and settings required by fb_app module.

Code

function fb_app_update_6205() {
  $ret = array();
  db_add_field($ret, 'fb_app', 'title', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
  ));
  return $ret;
}