You are here

function crm_core_activity_update_7005 in CRM Core 7

Adding 'activity string' as property of activity type.

File

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

Code

function crm_core_activity_update_7005() {
  db_add_field('crm_core_activity_type', 'activity_string', array(
    'description' => 'Text describing the relationship between the contact and this activity.',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}