You are here

function search_by_page_update_7003 in Search by Page 7

Add field to sbp_path table, and mark all pages for reindex.

File

./search_by_page.install, line 320
Install hooks for search_by_page module

Code

function search_by_page_update_7003() {

  // Add the new field for the page data.
  db_add_field('sbp_path', 'page_data', array(
    'description' => 'Page contents as of last index',
    'type' => 'text',
    'not null' => FALSE,
  ));
}