Skip to content

Commit

Permalink
append missing semicolon #3657
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Jan 25, 2018
1 parent 60b362b commit 92e0a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/database/upgrades/upgrade_v4.8.5_to_v4.9.sql
Original file line number Diff line number Diff line change
@@ -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';

0 comments on commit 92e0a43

Please sign in to comment.