X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mysql.sql;h=d8294b2c4bea24068c0b7abb8cfdb39cbca7c513;hb=5532fe6cfc2125063ff8040cfa80e20089ac64b0;hp=dd1d8c834bca85f04aa934d458bc084ebcd38ffb;hpb=7ee2751b66b677d08695b9d9939564d10987e435;p=timetracker.git diff --git a/mysql.sql b/mysql.sql index dd1d8c83..d8294b2c 100644 --- a/mysql.sql +++ b/mysql.sql @@ -139,7 +139,7 @@ CREATE TABLE `tt_log` ( `project_id` int(11) default NULL, # project id `task_id` int(11) default NULL, # task id `invoice_id` int(11) default NULL, # invoice id - `comment` blob, # user provided comment for time record + `comment` text, # user provided comment for time record `billable` tinyint(4) default '0', # whether the record is billable or not `status` tinyint(4) default '1', # time record status PRIMARY KEY (`id`) @@ -342,6 +342,19 @@ create index project_idx on tt_expense_items(project_id); create index invoice_idx on tt_expense_items(invoice_id); +# +# Structure for table tt_predefined_expenses. +# This table keeps names and costs for predefined expenses. +# +CREATE TABLE `tt_predefined_expenses` ( + `id` int(11) NOT NULL auto_increment, # predefined expense id + `team_id` int(11) NOT NULL, # team id + `name` varchar(255) NOT NULL, # predefined expense name, such as mileage + `cost` decimal(10,2) default '0.00', # cost for one unit + PRIMARY KEY (`id`) +); + + # # Structure for table tt_monthly_quotas. # This table keeps monthly work hour quotas for teams. @@ -356,4 +369,3 @@ CREATE TABLE `tt_monthly_quotas` ( ALTER TABLE `tt_monthly_quotas` ADD CONSTRAINT `FK_TT_TEAM_CONSTRAING` FOREIGN KEY (`team_id`) REFERENCES `tt_teams` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -