X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=mysql.sql;h=9a971bece6268c136c767e7a28f1439005bf9afa;hb=5d654698cf0f12e3f4f0848bcf02440a945a2bc8;hp=9ec80322b4a3d19488b3b4eeb23ea61b0be9b34f;hpb=8e24e2719b8ddaa77a3a9287cba2899e4ff3ca9e;p=timetracker.git diff --git a/mysql.sql b/mysql.sql index 9ec80322..9a971bec 100644 --- a/mysql.sql +++ b/mysql.sql @@ -24,9 +24,11 @@ CREATE TABLE `tt_teams` ( `time_format` varchar(20) NOT NULL default '%H:%M', # time format `week_start` smallint(2) NOT NULL DEFAULT '0', # Week start day, 0 == Sunday. `tracking_mode` smallint(2) NOT NULL DEFAULT '1', # tracking mode ("time", "projects" or "projects and tasks") - `tracking_mode_options` smallint(2) default NULL, # whether a task selection is required or optional + `project_required` smallint(2) NOT NULL DEFAULT '0', # whether a project selection is required or optional + `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". @@ -142,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`) ); @@ -211,6 +214,7 @@ CREATE TABLE `tt_fav_reports` ( `show_custom_field_1` tinyint(4) NOT NULL default '0', # whether to show custom field 1 `show_totals_only` tinyint(4) NOT NULL default '0', # whether to show totals only `group_by` varchar(20) default NULL, # group by field + `status` tinyint(4) default '1', # favorite report status PRIMARY KEY (`id`) ); @@ -226,6 +230,9 @@ 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`) );