summaryrefslogtreecommitdiff
path: root/docs/db-structure.sql
diff options
context:
space:
mode:
Diffstat (limited to 'docs/db-structure.sql')
-rw-r--r--docs/db-structure.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/db-structure.sql b/docs/db-structure.sql
index 56c0f0a..35fdc52 100644
--- a/docs/db-structure.sql
+++ b/docs/db-structure.sql
@@ -37,7 +37,9 @@ CREATE TABLE `rankings` (
`place` int(11) 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
+ `flags` varchar(2) COLLATE utf8_unicode_520_ci NOT NULL,
+ `rank` decimal(3,1) NOT NULL,
+ `club` varchar(100) COLLATE utf8_unicode_520_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_520_ci;
-- --------------------------------------------------------