You are here

function uc_csv_update_6204 in Ubercart CSV 6.2

File

./uc_csv.install, line 105
This defines our schema for the module

Code

function uc_csv_update_6204() {
  $ret = array();
  db_add_field($ret, 'uc_csv_reports', 'statuses', array(
    'description' => 'The order statuses to be included in this report',
    'type' => 'text',
    'size' => 'medium',
    'not null' => TRUE,
  ));
  return $ret;
}