diff --git a/scripts/database/upgrades/upgrade_v4.8.5_to_v4.9.sql b/scripts/database/upgrades/upgrade_v4.8.5_to_v4.9.sql index 8738880feaf..748b516e030 100644 --- a/scripts/database/upgrades/upgrade_v4.8.5_to_v4.9.sql +++ b/scripts/database/upgrades/upgrade_v4.8.5_to_v4.9.sql @@ -1,4 +1,4 @@ ALTER TABLE externaltool ADD COLUMN type character varying(255); ALTER TABLE externaltool ALTER COLUMN type SET NOT NULL; -- Previously, the only explore tool was TwoRavens. We now persist the name of the tool. -UPDATE guestbookresponse SET downloadtype = 'TwoRavens' WHERE downloadtype = 'Explore' +UPDATE guestbookresponse SET downloadtype = 'TwoRavens' WHERE downloadtype = 'Explore';