X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=mysql.sql;h=d8294b2c4bea24068c0b7abb8cfdb39cbca7c513;hb=cd5e077ecb497431decde4835138b877d63b261c;hp=a951a0546de59b5ac22b6eef7818a2197f518361;hpb=90115a9238f9a291ed91cd573c3896efe7ef5e35;p=timetracker.git 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; -