You are here

function uc_payment_update_6003 in Ubercart 6.2

Increase maximum length of comment field.

File

payment/uc_payment/uc_payment.install, line 120
Install hooks for uc_payment.module.

Code

function uc_payment_update_6003() {
  $ret = array();
  db_change_field($ret, 'uc_payment_receipts', 'comment', 'comment', array(
    'type' => 'text',
  ));
  return $ret;
}