summaryrefslogtreecommitdiff
path: root/sql/championship.sql
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2019-12-09 18:55:31 +0100
committeremkael <emkael@tlen.pl>2019-12-09 18:55:31 +0100
commit36221ecc1a6237243b1cb1c00e29e661aacd9f24 (patch)
treeadf3a5064be7db240befe3cf5ef2a2df2b7d19d3 /sql/championship.sql
parent2836ebf541fdcae401c0fa345e143d37db719ce0 (diff)
2019 Abu Dhabi GP + 2019 WDC standings
Diffstat (limited to 'sql/championship.sql')
-rw-r--r--sql/championship.sql23
1 files changed, 22 insertions, 1 deletions
diff --git a/sql/championship.sql b/sql/championship.sql
index da3e6b0..4acab10 100644
--- a/sql/championship.sql
+++ b/sql/championship.sql
@@ -1356,12 +1356,33 @@ INSERT INTO `championship` VALUES(1344, 2018, 17, 1167, 9);
INSERT INTO `championship` VALUES(1345, 2018, 18, 1181, 6);
INSERT INTO `championship` VALUES(1346, 2018, 19, 1183, 4);
INSERT INTO `championship` VALUES(1347, 2018, 20, 1185, 1);
+INSERT INTO `championship` VALUES(1348, 2019, 1, 1140, 413);
+INSERT INTO `championship` VALUES(1349, 2019, 2, 1161, 326);
+INSERT INTO `championship` VALUES(1350, 2019, 3, 1172, 278);
+INSERT INTO `championship` VALUES(1351, 2019, 4, 1184, 264);
+INSERT INTO `championship` VALUES(1352, 2019, 5, 1135, 240);
+INSERT INTO `championship` VALUES(1353, 2019, 6, 1170, 96);
+INSERT INTO `championship` VALUES(1354, 2019, 7, 1182, 95);
+INSERT INTO `championship` VALUES(1355, 2019, 8, 1187, 92);
+INSERT INTO `championship` VALUES(1356, 2019, 9, 1157, 54);
+INSERT INTO `championship` VALUES(1357, 2019, 10, 1155, 52);
+INSERT INTO `championship` VALUES(1358, 2019, 11, 1186, 49);
+INSERT INTO `championship` VALUES(1359, 2019, 12, 1141, 43);
+INSERT INTO `championship` VALUES(1360, 2019, 13, 1166, 37);
+INSERT INTO `championship` VALUES(1361, 2019, 14, 1148, 37);
+INSERT INTO `championship` VALUES(1362, 2019, 15, 1181, 21);
+INSERT INTO `championship` VALUES(1363, 2019, 16, 1165, 20);
+INSERT INTO `championship` VALUES(1364, 2019, 17, 1180, 14);
+INSERT INTO `championship` VALUES(1365, 2019, 18, 1144, 8);
+INSERT INTO `championship` VALUES(1366, 2019, 19, 1136, 1);
+INSERT INTO `championship` VALUES(1367, 2019, 20, 1188, 0);
+
ALTER TABLE `championship`
ADD PRIMARY KEY (`id`), ADD KEY `_driver` (`_driver`);
ALTER TABLE `championship`
-MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1271;
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1368;
ALTER TABLE `championship`
ADD CONSTRAINT `championship_ibfk_1` FOREIGN KEY (`_driver`) REFERENCES `drivers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;