You are here

function sms_track_update_7001 in SMS Framework 7

Change the 'status' field from tinyint to smallint.

See drupal issues #2295013 and #1959802.

File

modules/sms_track/sms_track.install, line 114
SMS Framework Message Tracking feature module: Install file.

Code

function sms_track_update_7001(&$sandbox) {
  $schema = sms_track_schema();
  $spec = $schema['sms_track']['fields']['status'];
  db_change_field('sms_track', 'status', 'status', $spec);
}