89 lines
3.6 KiB
SQL
89 lines
3.6 KiB
SQL
-- WARNING: Will delete EVERYTHING in the database!
|
|
|
|
DROP TABLE IF EXISTS players;
|
|
DROP TABLE IF EXISTS matches;
|
|
DROP TABLE IF EXISTS teams;
|
|
DROP TABLE IF EXISTS tournaments;
|
|
|
|
-- Create the tables
|
|
CREATE TABLE tournaments (
|
|
id INTEGER PRIMARY KEY AUTO_INCREMENT,
|
|
name TEXT NOT NULL,
|
|
startTime DATETIME NOT NULL,
|
|
endTime DATETIME NOT NULL
|
|
);
|
|
|
|
CREATE TABLE teams (
|
|
id INTEGER PRIMARY KEY AUTO_INCREMENT,
|
|
tournamentId INTEGER NOT NULL,
|
|
name TEXT NOT NULL,
|
|
|
|
FOREIGN KEY (tournamentId) REFERENCES tournaments (id)
|
|
);
|
|
|
|
CREATE TABLE matches (
|
|
id INTEGER PRIMARY KEY AUTO_INCREMENT,
|
|
tournamentId INTEGER NOT NULL,
|
|
parentMatchId INTEGER,
|
|
team1Id INTEGER,
|
|
team2Id INTEGER,
|
|
winnerId INTEGER,
|
|
|
|
FOREIGN KEY (tournamentId) REFERENCES tournaments (id),
|
|
FOREIGN KEY (team1Id) REFERENCES teams (id),
|
|
FOREIGN KEY (team2Id) REFERENCES teams (id)
|
|
);
|
|
|
|
CREATE TABLE players (
|
|
id INTEGER PRIMARY KEY AUTO_INCREMENT,
|
|
name TEXT NOT NULL,
|
|
teamId INTEGER NOT NULL,
|
|
|
|
FOREIGN KEY (teamId) REFERENCES teams (id)
|
|
);
|
|
|
|
-- Example data (Two tournaments, 4 teams, single elimination)
|
|
INSERT INTO tournaments (name, startTime, endTime) VALUES ('Tournament 1', '2022-04-01 16:00:00', '2022-04-01 20:00:00');
|
|
INSERT INTO tournaments (name, startTime, endTime) VALUES ('Tournament 2', '2022-04-03 17:30:00', '2022-04-02 21:30:00');
|
|
|
|
INSERT INTO teams (tournamentId, name) VALUES (1, 'Fnatic'); -- 1
|
|
INSERT INTO teams (tournamentId, name) VALUES (1, 'Cloud 9'); -- 2
|
|
INSERT INTO teams (tournamentId, name) VALUES (1, 'Team Liquid'); -- 3
|
|
INSERT INTO teams (tournamentId, name) VALUES (1, 'LDLC'); -- 4
|
|
|
|
INSERT INTO teams (tournamentId, name) VALUES (2, 'Astralis'); -- 5
|
|
INSERT INTO teams (tournamentId, name) VALUES (2, 'Entropiq'); -- 6
|
|
INSERT INTO teams (tournamentId, name) VALUES (2, 'Team Vitality'); -- 7
|
|
INSERT INTO teams (tournamentId, name) VALUES (2, 'Godsent'); -- 8
|
|
|
|
-- tournament 1 --
|
|
-- Final match
|
|
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id) VALUES (1, NULL, NULL, NULL); -- 1
|
|
-- Semi-finals
|
|
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id) VALUES (1, 1, 1, 2); -- 2
|
|
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id) VALUES (1, 1, 3, 4); -- 3
|
|
|
|
-- tournament 2 --
|
|
-- Final match
|
|
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id) VALUES (2, NULL, NULL, NULL); -- 4
|
|
-- Semi-finals
|
|
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id) VALUES (2, 4, 5, 7); -- 5
|
|
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id) VALUES (2, 4, 6, 8); -- 6
|
|
|
|
-- Players
|
|
INSERT INTO players (name, teamId) VALUES ('Player 1', 1);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 2', 1);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 3', 2);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 4', 2);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 5', 3);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 6', 3);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 7', 4);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 8', 4);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 9', 5);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 10', 5);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 11', 6);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 12', 6);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 13', 7);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 14', 7);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 15', 8);
|
|
INSERT INTO players (name, teamId) VALUES ('Player 16', 8); |