X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/faa0cedb1b67c464339f82236e29387796983b02..faf7e94d5a3e5b7adb8f705f315aaca041276900:/mysql.sql diff --git a/mysql.sql b/mysql.sql index a951a054..d8294b2c 100644 --- a/mysql.sql +++ b/mysql.sql @@ -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; -