You are here

function crm_core_activity_update_7001 in CRM Core 7

Update crm_core_activity schema.

File

modules/crm_core_activity/crm_core_activity.install, line 232
Install, update, and uninstall functions for the CRM Core Activity module.

Code

function crm_core_activity_update_7001(&$sandbox) {
  if (!db_field_exists('crm_core_activity', 'activity_type_id')) {
    $spec = array(
      'description' => 'The current {crm_core_activity_type}.id of this activity.',
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'default' => 0,
    );
    db_add_field('crm_core_activity', 'activity_type_id', $spec);
  }
}