You are here

function uc_payment_update_7001 in Ubercart 7.3

Increase maximum length of comment field.

File

payment/uc_payment/uc_payment.install, line 138
Install, update and uninstall functions for the uc_payment module.

Code

function uc_payment_update_7001() {
  db_change_field('uc_payment_receipts', 'comment', 'comment', array(
    'description' => 'A comment made on the payment.',
    'type' => 'text',
  ));
}