You are here

function fb_app_update_1 in Drupal for Facebook 5.2

Same name and namespace in other branches
  1. 5 fb_app.install \fb_app_update_1()

File

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

Code

function fb_app_update_1() {

  // Add id field
  $ret[] = update_sql('ALTER TABLE {fb_app} ADD id varchar(128) NOT NULL');
  return $ret;
}