You are here

function sms_update_1 in SMS Framework 5

Same name and namespace in other branches
  1. 6.2 sms.install \sms_update_1()

Update: Removes gateway behavior mapping

File

./sms.install, line 41

Code

function sms_update_1() {
  $ret = array();

  // Remove table
  $ret[] = update_sql("DROP TABLE {sms_mapping}");
  return $ret;
}