X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/eb14c12d3be2cd31e20988b6abf7585f6af0b34d..5d654698cf0f12e3f4f0848bcf02440a945a2bc8:/mysql.sql?ds=inline diff --git a/mysql.sql b/mysql.sql index e9262923..9a971bec 100644 --- a/mysql.sql +++ b/mysql.sql @@ -144,6 +144,7 @@ CREATE TABLE `tt_log` ( `invoice_id` int(11) default NULL, # invoice id `comment` text, # user provided comment for time record `billable` tinyint(4) default '0', # whether the record is billable or not + `paid` tinyint(4) default '0', # whether the record is paid `status` tinyint(4) default '1', # time record status PRIMARY KEY (`id`) ); @@ -229,6 +230,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`)