You are here

function opengraph_meta_update_6002 in Open Graph meta tags 7

Same name and namespace in other branches
  1. 6 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 23

Code

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