X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mysql.sql;h=de5060dad95df2b15ccee3877d4a74ffb41d3212;hb=759621718acb3321e844381f94704e585a964cd4;hp=b7cd700241d5b412a820a77c48d214750130acf2;hpb=faab3aece19a445dd7e2e42d82f47e701d32366f;p=timetracker.git diff --git a/mysql.sql b/mysql.sql index b7cd7002..de5060da 100644 --- a/mysql.sql +++ b/mysql.sql @@ -28,6 +28,7 @@ CREATE TABLE `tt_teams` ( `task_required` smallint(2) NOT NULL DEFAULT '0', # whether a task selection is required or optional `record_type` smallint(2) NOT NULL DEFAULT '0', # time record type ("start and finish", "duration", or both) `uncompleted_indicators` smallint(2) NOT NULL DEFAULT '0', # whether to show indicators for users with uncompleted time entries + `bcc_email` varchar(100) default NULL, # bcc email to copy all reports to `plugins` varchar(255) default NULL, # a list of enabled plugins for team `lock_spec` varchar(255) default NULL, # Cron specification for record locking, # for example: "0 10 * * 1" for "weekly on Mon at 10:00". @@ -228,6 +229,8 @@ CREATE TABLE `tt_cron` ( `next` int(11) default NULL, # UNIX timestamp of when to run next job `report_id` int(11) default NULL, # report id from tt_fav_reports, a report to mail on schedule `email` varchar(100) default NULL, # email to send results to + `cc` varchar(100) default NULL, # cc email to send results to + `subject` varchar(100) default NULL, # email subject `report_condition` varchar(255) default NULL, # report condition, "count > 0" for sending not empty reports `status` tinyint(4) default '1', # entry status PRIMARY KEY (`id`)