You are here

function opengraph_meta_update_6001 in Open Graph meta tags 6

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

Add the 'type' meta tag field to the meta tags table.

See also

http://drupal.org/node/975350

File

./opengraph_meta.install, line 9

Code

function opengraph_meta_update_6001() {
  $result = array();
  db_add_field($result, OPENGRAPH_META_TABLE, OpenGraphMeta::TYPE, array(
    'type' => 'varchar',
    'length' => '255',
    'not null' => TRUE,
    'default' => '',
  ));
  return $result;
}