You are here

function uc_restrict_qty_update_6201 in Ubercart Restrict Qty 6.2

Add lifetime value to the scheme.

File

./uc_restrict_qty.install, line 102
uc_restrict_qty module install file.

Code

function uc_restrict_qty_update_6201() {
  $ret = array();
  db_add_field($ret, 'uc_restrict_qty_products', 'lifetime', array(
    'type' => 'int',
    'size' => 'tiny',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 1,
  ));
  return $ret;
}