mirror of
https://github.com/FAUSheppy/skillbird
synced 2025-12-06 06:51:34 +01:00
11 lines
193 B
Plaintext
11 lines
193 B
Plaintext
create TABLE rounds (
|
|
timestamp TEXT PRIMARY KEY,
|
|
winners BLOB,
|
|
losers BLOB,
|
|
winnerSide INTEGER,
|
|
map TEXT,
|
|
duration REAL,
|
|
prediction INTEGER,
|
|
confidence REAL
|
|
);
|