fix capitalization

This commit is contained in:
Nick Griffey 2024-03-16 23:37:42 -05:00
parent 375c6d940e
commit eb2874a9c5
2 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,10 @@ union
select distinct awardID
from "raw".awardsplayers;
update awards
set id = 'Silver Slugger'
where id = 'SIlver Slugger';
create table if not exists "awards" (
"ID" text,
primary key("ID")

View File

@ -7,6 +7,10 @@ create temp table awardsplayers as
select * from "raw".awardsplayers;
alter table temp.awardsplayers drop column "tie";
update awardsplayers
set awardid = 'Silver Slugger'
where awardid = 'SIlver Slugger';
CREATE TABLE IF NOT EXISTS main."awardsplayers" (
"player" TEXT,
"award" TEXT,