X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mysql.sql;h=d6e1d2d321032c47f39ae04ae135ecd75b9b8fde;hb=c370348dba4b65ae74dc2b8d5bf1b9c0ed5f19cc;hp=de5060dad95df2b15ccee3877d4a74ffb41d3212;hpb=1b6699f3d4ad1961fa4055ec0033bc10f0b06b83;p=timetracker.git diff --git a/mysql.sql b/mysql.sql index de5060da..d6e1d2d3 100644 --- a/mysql.sql +++ b/mysql.sql @@ -16,7 +16,6 @@ CREATE TABLE `tt_teams` ( `id` int(11) NOT NULL auto_increment, # team id `timestamp` timestamp NOT NULL, # modification timestamp `name` varchar(80) default NULL, # team name - `address` varchar(255) default NULL, # team address, used in invoices `currency` varchar(7) default NULL, # team currency symbol `decimal_mark` char(1) NOT NULL default '.', # separator in decimals `lang` varchar(10) NOT NULL default 'en', # language @@ -32,7 +31,7 @@ CREATE TABLE `tt_teams` ( `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". - `workday_hours` smallint(6) DEFAULT '8', # number of work hours in a regular day + `workday_hours` decimal(5,2) DEFAULT '8.00', # number of work hours in a regular day `custom_logo` tinyint(4) default '0', # whether to use a custom logo or not `status` tinyint(4) default '1', # team status PRIMARY KEY (`id`) @@ -144,6 +143,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`) ); @@ -191,18 +191,21 @@ CREATE TABLE `tt_fav_reports` ( `id` int(11) NOT NULL auto_increment, # favorite report id `name` varchar(200) NOT NULL, # favorite report name `user_id` int(11) NOT NULL, # user id favorite report belongs to + `report_spec` text default NULL, # future replacement field for all report settings `client_id` int(11) default NULL, # client id (if selected) `cf_1_option_id` int(11) default NULL, # custom field 1 option id (if selected) `project_id` int(11) default NULL, # project id (if selected) `task_id` int(11) default NULL, # task id (if selected) `billable` tinyint(4) default NULL, # whether to include billable, not billable, or all records `invoice` tinyint(4) default NULL, # whether to include invoiced, not invoiced, or all records + `paid_status` tinyint(4) default NULL, # whether to include paid, not paid, or all records `users` text default NULL, # Comma-separated list of user ids. Nothing here means "all" users. `period` tinyint(4) default NULL, # selected period type for report `period_start` date default NULL, # period start `period_end` date default NULL, # period end `show_client` tinyint(4) NOT NULL default '0', # whether to show client column `show_invoice` tinyint(4) NOT NULL default '0', # whether to show invoice column + `show_paid` tinyint(4) NOT NULL default '0', # whether to show paid column `show_project` tinyint(4) NOT NULL default '0', # whether to show project column `show_start` tinyint(4) NOT NULL default '0', # whether to show start field `show_duration` tinyint(4) NOT NULL default '0', # whether to show duration field @@ -337,6 +340,7 @@ CREATE TABLE `tt_expense_items` ( `name` text NOT NULL, # expense item name (what is an expense for) `cost` decimal(10,2) default '0.00', # item cost (including taxes, etc.) `invoice_id` int(11) default NULL, # invoice id + `paid` tinyint(4) default '0', # whether the item is paid `status` tinyint(4) default '1', # item status PRIMARY KEY (`id`) ); @@ -370,7 +374,7 @@ CREATE TABLE `tt_monthly_quotas` ( `team_id` int(11) NOT NULL, # team id `year` smallint(5) UNSIGNED NOT NULL, # quota year `month` tinyint(3) UNSIGNED NOT NULL, # quota month - `quota` smallint(5) UNSIGNED NOT NULL, # number of work hours in specified month and year + `quota` decimal(5,2) NOT NULL, # number of work hours in specified month and year PRIMARY KEY (`team_id`,`year`,`month`) );