Appearances
0 rows where player_id = 124
This data as json
0 records
CREATE TABLE appearances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
player_id INTEGER NOT NULL REFERENCES players(id),
season INTEGER NOT NULL,
games INTEGER NOT NULL,
UNIQUE(player_id, season)
);
CREATE INDEX idx_appearances ON appearances(player_id);