function opengraph_meta_update_6001 in Open Graph meta tags 6
Same name and namespace in other branches
- 7 opengraph_meta.install \opengraph_meta_update_6001()
Add the 'type' meta tag field to the meta tags table.
See also
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;
}