function opengraph_meta_update_6001 in Open Graph meta tags 7
Same name and namespace in other branches
- 6 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() {
db_add_field(OPENGRAPH_META_TABLE, OpenGraphMeta::TYPE, array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
));
}