diff options
author | emkael <emkael@tlen.pl> | 2017-06-07 23:42:49 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-06-07 23:42:49 +0200 |
commit | 516679dc7d2f94d2b84b389361cac1b1b1336d3e (patch) | |
tree | a8587858b4f8a13a423ef4474ac75c86b7748272 /docs | |
parent | 8905ba09f9132370c34220ec48bf4b4a5de97106 (diff) |
Tooltips for precise ranking values
Diffstat (limited to 'docs')
-rw-r--r-- | docs/db-structure.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/db-structure.sql b/docs/db-structure.sql index 7310b80..56c0f0a 100644 --- a/docs/db-structure.sql +++ b/docs/db-structure.sql @@ -35,7 +35,7 @@ CREATE TABLE `rankings` ( `pid` int(11) NOT NULL, `date` date NOT NULL, `place` int(11) NOT NULL, - `score` decimal(6,2) NOT NULL, + `score` decimal(8,4) NOT NULL, `region` varchar(2) COLLATE utf8_unicode_520_ci NOT NULL, `flags` varchar(2) COLLATE utf8_unicode_520_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_520_ci; @@ -53,7 +53,7 @@ CREATE TABLE `temp_rankings` ( `pid` int(11) NOT NULL, `date` date NOT NULL, `place` int(11) NOT NULL, - `score` decimal(6,2) NOT NULL + `score` decimal(8,4) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_520_ci; -- |