You are here

function fb_example_update_1 in Drupal for Facebook 6.3

Implements hook_update_N().

Set weight so that fb_example comes after fb_user.

File

contrib/fb_example.install, line 24
Install file for fb_example.module. Set the weight of our module to be after og.

Code

function fb_example_update_1() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 3 WHERE name='fb_example'");
  return $ret;
}