1-- Add the cc column to tblticketmaillog
2set @query = if ((select count(*) from information_schema.columns where table_schema=database() and table_name='tblticketmaillog' and column_name='cc') = 0, 'alter table `tblticketmaillog` add `cc` TEXT COLLATE utf8_unicode_ci NOT NULL AFTER `to`', 'DO 0');
3prepare statement from @query;
4execute statement;
5deallocate prepare statement;
6
7-- Add new TicketAddCarbonCopyRecipients setting to tblconfiguration
8set @query = if ((select count(*) from `tblconfiguration` where `setting` = 'TicketAddCarbonCopyRecipients') = 0, "INSERT INTO `tblconfiguration` (`setting`, `value`, `created_at`, `updated_at`) VALUES ('TicketAddCarbonCopyRecipients', '1', now(), now());",'DO 0;');
9prepare statement from @query;
10execute statement;
11deallocate prepare statement;
12