function uc_csv_update_7205 in Ubercart CSV 7.2
Add a status field. These are order statuses to be included in report exports.
File
- ./
uc_csv.install, line 113 - This defines our schema for the module
Code
function uc_csv_update_7205() {
db_add_field('uc_csv_reports', 'statuses', array(
'description' => 'The order statuses to be included in this report',
'type' => 'text',
'not null' => TRUE,
'size' => 'medium',
));
}