diff options
author | emkael <emkael@tlen.pl> | 2021-11-22 15:48:45 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2021-11-22 15:48:45 +0100 |
commit | 7b9a798d1de86be6fb17f5c06dc1cef8b53ea30a (patch) | |
tree | 8937ea95effb9fe5387dde968481a3033e178faf | |
parent | 7e40ce8306e3aff1c3e7f4827e158d227323ad8b (diff) |
Bob Bondurant's death date
-rw-r--r-- | import/11_death_dates.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/import/11_death_dates.sql b/import/11_death_dates.sql index 1c44a1c..77078cf 100644 --- a/import/11_death_dates.sql +++ b/import/11_death_dates.sql @@ -1,4 +1,5 @@ ALTER TABLE drivers ADD dod DATE NULL AFTER dob; +UPDATE drivers SET dod = "2021-11-12" WHERE driverId = 396; -- Bob Bondurant UPDATE drivers SET dod = "2021-11-08" WHERE driverId = 472; -- Mike Harris UPDATE drivers SET dod = "2021-09-22" WHERE driverId = 425; -- Nino Vaccarella UPDATE drivers SET dod = "2021-08-25" WHERE driverId = 460; -- Gerry Ashmore |