From 3a4cd2c922c50fdfc203724222158df3388c2faf Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Wed, 6 Apr 2022 10:19:24 +0200 Subject: [PATCH] Change demo data --- src/server/management/initDB.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/management/initDB.sql b/src/server/management/initDB.sql index 3bbe8ef..4bf4bfb 100644 --- a/src/server/management/initDB.sql +++ b/src/server/management/initDB.sql @@ -47,8 +47,8 @@ CREATE TABLE players ( ); -- Example data (Two tournaments, 4 teams, single elimination) -INSERT INTO tournaments (name, description, startTime, endTime, teamLimit) VALUES ('Tournament 1', 'First tournament, single elimination', '2022-04-01 16:00:00', '2022-04-01 20:00:00', 4); -INSERT INTO tournaments (name, description, startTime, endTime, teamLimit) VALUES ('Tournament 2', 'Second tournament, four teams', '2022-04-03 17:30:00', '2022-04-04 21:30:00', 8); +INSERT INTO tournaments (name, description, startTime, endTime, teamLimit) VALUES ('Tournament 1', 'First tournament, single elimination', '2022-06-01 16:00:00', '2022-06-01 20:00:00', 4); +INSERT INTO tournaments (name, description, startTime, endTime, teamLimit) VALUES ('Tournament 2', 'Second tournament, four teams', '2022-03-03 17:30:00', '2022-03-04 21:30:00', 8); INSERT INTO teams (tournamentId, name) VALUES (1, 'Fnatic'); -- 1 INSERT INTO teams (tournamentId, name) VALUES (1, 'Cloud 9'); -- 2