You are here

function fb_friend_update_6300 in Drupal for Facebook 7.3

Same name and namespace in other branches
  1. 6.3 contrib/fb_friend.install \fb_friend_update_6300()

File

contrib/fb_friend.install, line 96
Installs database tables and settings required by fb_friend module.

Code

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

  // introducing fb_friend table.
  $schema = fb_friend_schema();
  db_create_table($ret, 'fb_friend', $schema['fb_friend']);
  return $ret;
}