You are here

function birthdays_update_5003 in Birthdays 7

Same name and namespace in other branches
  1. 5 birthdays.install \birthdays_update_5003()
  2. 6 birthdays.install \birthdays_update_5003()

Remove the variable 'birthdays_field_name'.

File

./birthdays.install, line 53
Installation file for the Birthdays module.

Code

function birthdays_update_5003() {
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Variable "birthdays_field_name" has been deleted successfully',
  );
  variable_del('birthdays_field_name');
  return $ret;
}