You are here

function timeline_bookmark_update_7001 in MediaFront 7.2

Implements hook_update_N

Add the bookmark type to the timeline_bookmark module.

File

modules/timeline_bookmark/timeline_bookmark.install, line 73

Code

function timeline_bookmark_update_7001() {
  $spec = array(
    'description' => 'The bookmark type.',
    'type' => 'varchar',
    'length' => '128',
    'not null' => TRUE,
    'default' => 'bookmark',
  );
  db_add_field('timeline_bookmark', 'type', $spec);
}