You are here

function party_update_7023 in Party 7

Add the primary email field.

File

./party.install, line 173
Contains install hooks for the CRM party module.

Code

function party_update_7023() {
  db_add_field('party', 'email', array(
    'description' => 'The primary email address for this party. This is generated based off of the primary field settings.',
    'type' => 'varchar',
    'length' => 255,
  ));
}