You are here

function recommender_update_7002 in Recommender API 7.3

Same name and namespace in other branches
  1. 7.4 recommender.install \recommender_update_7002()

Add cron settings to {recommender_app}

File

./recommender.install, line 265
Installation file for the Recommender API module. Note: Not compatible with 6.x releases. Please uninstall 6.x releases before installing the D7 release.

Code

function recommender_update_7002() {
  $schema = recommender_schema();
  db_add_field('recommender_app', 'cron', $schema['recommender_app']['fields']['cron']);
  db_add_field('recommender_app', 'execution_id', $schema['recommender_app']['fields']['execution_id']);
}