You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Create scripts

UserTabs table

CREATE TABLE UserTabs (
  UserID INT NOT NULL,
  TabID INT NOT NULL,
  PRIMARY KEY (UserID));

DriverRaces table

CREATE TABLE DriverRaces (
  RaceID INT NOT NULL,
  DriverID INT NOT NULL,
  RoundID INT NOT NULL,
  PRIMARY KEY (RaceID, DriverID, RoundID)
);


  • No labels