function uc_csv_update_6203 in Ubercart CSV 6.2
Add a field for the type of file to be exported with a report
File
- ./
uc_csv.install, line 94 - This defines our schema for the module
Code
function uc_csv_update_6203() {
$ret = array();
db_add_field($ret, 'uc_csv_reports', 'file_type', array(
'description' => 'The type of file to be exported',
'type' => 'varchar',
'length' => 3,
'not null' => TRUE,
'default' => 'csv',
));
return $ret;
}