diff options
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; -- |