You are here

function uc_extra_fields_pane_update_6201 in Extra Fields Checkout Pane 6.2

Change the key used for textfields from 0 to 5

File

./uc_extra_fields_pane.install, line 213
Module: uc_extra_fields_pane.module

Code

function uc_extra_fields_pane_update_6201() {
  $ret = array();
  $ret[] = update_sql("UPDATE {uc_extra_fields} SET field_value_type = 5 WHERE field_value_type = 0");
  return $ret;
}