You are here

function uc_csv_update_7206 in Ubercart CSV 7.2

Add fields to allow emailing of reports to specific users when reports are generated

File

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

Code

function uc_csv_update_7206() {
  $schema = uc_csv_schema();
  db_add_field('uc_csv_reports', 'report_email_enable', $schema['uc_csv_reports']['description']['email_enable']);
  db_add_field('uc_csv_reports', 'report_email_address', $schema['uc_csv_reports']['description']['email_address']);
}