Bunny Coefficient (Tail-End Killers)
0 rows where player_id = 34
This data as json
0 records
CREATE TABLE bunny_coefficient (
id INTEGER PRIMARY KEY AUTOINCREMENT,
player_id INTEGER NOT NULL REFERENCES players(id),
season INTEGER NOT NULL,
cvr INTEGER,
wickets INTEGER,
bc REAL,
UNIQUE(player_id, season)
);