From c46190d5a8ce497f5afd381c9804826bf202b345 Mon Sep 17 00:00:00 2001 From: filifa Date: Wed, 6 Aug 2025 19:08:08 -0400 Subject: [PATCH] set death months and days to null --- sql/people.sql | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sql/people.sql b/sql/people.sql index 951f256..59872db 100644 --- a/sql/people.sql +++ b/sql/people.sql @@ -61,6 +61,15 @@ set bbrefID = nullif(bbrefid, ''), retroID = nullif(retroid, ''); +-- we don't know exactly when Alfredo Cabrera died +update people +set deathMonth = null +where deathMonth = 0; + +update people +set deathDay = null +where deathDay = 0; + update people set throws = 'B' where throws = 'S';