You are here

function fb_app_update_6206 in Drupal for Facebook 6.3

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

File

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

Code

function fb_app_update_6206() {
  $ret = array();

  // Add default value to nid col.
  db_change_field($ret, 'fb_app', 'nid', 'nid', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}