]> wagnertech.de Git - timetracker.git/blobdiff - mysql.sql
A fix for issue #47.
[timetracker.git] / mysql.sql
index 1e415c149afffb66d33d3b3512a7783890da6493..96e14924426762d9a707b06ce162d8f9266b5c68 100644 (file)
--- a/mysql.sql
+++ b/mysql.sql
@@ -374,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`)
 );