You are here

function opengraph_meta_update_6002 in Open Graph meta tags 6

Same name and namespace in other branches
  1. 7 opengraph_meta.install \opengraph_meta_update_6002()

Add an 'optional_tags' field for additional tags.

See also

http://drupal.org/node/983512

File

./opengraph_meta.install, line 25

Code

function opengraph_meta_update_6002() {
  $result = array();
  db_add_field($result, OPENGRAPH_META_TABLE, OpenGraphMeta::__OPTIONAL_DB_FIELD, array(
    'type' => 'text',
    'not null' => FALSE,
    'serialize' => TRUE,
  ));
  return $result;
}