home / my_database

Menu
  • Playoff Bracket
  • Game Predictor
  • Season Predictor

franchise_history

0 rows where team_id = 397

✎ View and edit SQL

This data as json

0 records

CREATE TABLE franchise_history (
            history_id INTEGER PRIMARY KEY AUTOINCREMENT,
            franchise_id INTEGER NOT NULL REFERENCES franchise(franchise_id),
            team_id INTEGER REFERENCES team(team_id),
            team_code TEXT NOT NULL,
            active BOOLEAN NOT NULL,
            name TEXT NOT NULL,
            city TEXT NOT NULL,
            nickname TEXT NOT NULL,
            start_year INTEGER NOT NULL,
            end_year INTEGER
        );
Powered by Datasette · Queries took 12.266ms