You are here

function uc_discounts_update_7 in Ubercart Discounts (Alternative) 6.2

File

uc_discounts/uc_discounts.install, line 597
Install hooks for uc_discounts.module.

Code

function uc_discounts_update_7() {
  db_change_field($ret, 'uc_discounts', 'is_published', 'is_active', array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => FALSE,
    'default' => 0,
  ));
  return $ret;
}