diff --git a/README.md b/README.md index 050746c..14ec77b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ Skillbird is a framework around the python-Trueskill library, which can parse fi python3 -m pip install -r req.txt cd python/ mkdir data/ - sqlite -init players.sqlite.init + sqlite -init players.sqlite.init players.sqlite + sqlite -init rounds.sqlite.init rounds.sqlite ./init -h # Web Interface diff --git a/python/rounds.sqlite.init b/python/rounds.sqlite.init new file mode 100644 index 0000000..bcfb09d --- /dev/null +++ b/python/rounds.sqlite.init @@ -0,0 +1,10 @@ +create TABLE rounds ( + timestamp TEXT PRIMARY KEY, + winners BLOB, + losers BLOB, + winnerSide INTEGER, + map TEXT, + duration REAL, + prediction INTEGER, + confidence REAL +);