function uc_credit_update_2 in Ubercart 5
File
- payment/
uc_credit/ uc_credit.install, line 71
Code
function uc_credit_update_2() {
$ret[] = update_sql("ALTER TABLE {uc_payment_credit} CHANGE `cc_owner` `cc_owner` VARCHAR(255) NOT NULL, " . "CHANGE `cc_number` `cc_number` VARCHAR(255) NOT NULL, " . "CHANGE `cc_exp_month` `cc_exp_month` VARCHAR(255) NOT NULL, " . "CHANGE `cc_exp_year` `cc_exp_year` VARCHAR(255) NOT NULL, " . "CHANGE `cc_cvv` `cc_cvv` VARCHAR(255) NOT NULL");
return $ret;
}