function uc_csv_update_7204 in Ubercart CSV 7.2
Add a boolean field to determine if last order exported should be tracked per report
File
- ./
uc_csv.install, line 101 - This defines our schema for the module
Code
function uc_csv_update_7204() {
db_add_field('uc_csv_reports', 'track', array(
'description' => 'Should this report track last exports. Boolean.',
'type' => 'int',
'length' => 1,
'not null' => TRUE,
'default' => '1',
));
}