You are here

function uc_payment_update_6004 in Ubercart 6.2

Fix non-null payment receipts data field for Drupal 5 upgrades.

File

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

Code

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