aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-03-24 11:03:54 +0100
committerlonkaars <loek@pipeframe.xyz>2023-03-24 11:03:54 +0100
commit30d6291103bd39f0d33c305215495c46c8b6dc30 (patch)
tree287d71add9c5e9e6ab01d8ec75ff5d40d5720224
parentb0d6eed61e0dba7e2765b98e4ac170d880279773 (diff)
fix another typo
-rw-r--r--dbinit/demo.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbinit/demo.sql b/dbinit/demo.sql
index b6da468..2672489 100644
--- a/dbinit/demo.sql
+++ b/dbinit/demo.sql
@@ -36,13 +36,13 @@ insert into `formula1`.`member` (`firstName`, `middleName`, `lastName`, `functio
("Peach", "", "Toadstool", 1),
("Loek", "Le", "Blansch", 2);
-insert into `formula1`.`racedate` (`calanderID`, `raceTypeID`, `week`, `date`) values
+insert into `formula1`.`racedate` (`calendarID`, `raceTypeID`, `week`, `date`) values
(2, 2, 4, "2011-01-29"),
(1, 2, 12, "2011-04-02"),
(3, 1, 28, "2011-07-25"),
(5, 1, 29, "2011-07-26");
-insert into `formula1`.`teams` (`calanderID`, `teamNumber`, `teamName`) values
+insert into `formula1`.`teams` (`calendarID`, `teamNumber`, `teamName`) values
(1, 1, "Team red"),
(2, 2, "Team blue");