You are here

function uc_csv_update_6205 in Ubercart CSV 6.2

File

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

Code

function uc_csv_update_6205() {
  $ret = array();
  db_add_field($ret, 'uc_csv_reports', 'track', array(
    'description' => 'Should this report track last exports. Boolean.',
    'type' => 'int',
    'length' => 1,
    'not null' => TRUE,
  ));
  return $ret;
}