X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mysql.sql;h=40065f062d22f118c371681df925b0c83006ac4f;hb=2a2bb2cc8f9551d1e93de2d34e27b21201f9e44a;hp=56c217a3a6d0c964b5d2eeb05c60e689d3703374;hpb=4a23c8efa5cd0af46cef4a602b5897f9b8e14636;p=timetracker.git diff --git a/mysql.sql b/mysql.sql index 56c217a3..40065f06 100644 --- a/mysql.sql +++ b/mysql.sql @@ -576,6 +576,25 @@ create unique index currency_idx on tt_work_currencies(`name`); INSERT INTO `tt_work_currencies` (`id`, `name`) VALUES ('1', 'USD'), ('2', 'CAD'), ('3', 'AUD'), ('4', 'EUR'), ('5', 'NZD'); +# +# Structure for table tt_work_categories. WORK IN PROGRESS! +# This table keeps work categories supported by remote work plugin. +# +# CREATE TABLE `tt_work_categories` ( +# `id` int(10) unsigned NOT NULL, # category id +# `parent_id` int(10) unsigned default NULL, # parent category id +# `level` tinyint(4) default 0, # sub-category level +# +# Localized name fields below for all supported languages? +# `name_en` varhar(64) NOT NULL, # English. +# `name_de` varhar(64) default NULL, # German. +# `name_fr` varhar(64) default NULL, # French. +# `name_ru` varhar(64) default NULL, # Russian. +# +# PRIMARY KEY (`id`) +# ); + + # # Structure for table tt_site_config. This table stores configuration data # for Time Tracker site as a whole.