home / my_database

Menu
  • Playoff Bracket
  • Game Predictor
  • Season Predictor

playoff_series_predictions

0 rows where series_id = 119

✎ View and edit SQL

This data as json

0 records

CREATE TABLE playoff_series_predictions (
            prediction_id        INTEGER PRIMARY KEY AUTOINCREMENT,
            series_id            INTEGER NOT NULL REFERENCES playoff_brackets(series_id),
            snapshot_date        TEXT NOT NULL,
            home_team_id         INTEGER NOT NULL,
            away_team_id         INTEGER NOT NULL,
            home_series_win_pct  REAL NOT NULL,
            away_series_win_pct  REAL NOT NULL,
            expected_games       REAL NOT NULL,
            games_dist_json      TEXT NOT NULL,
            n_simulations        INTEGER NOT NULL,
            computed_at          TEXT NOT NULL,
            UNIQUE(series_id, snapshot_date)
        );
Powered by Datasette · Queries took 10.215ms