Skip to content

Commit

Permalink
fix: Typo in down.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Feb 9, 2024
1 parent 8de7402 commit 8b230c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ UPDATE
public.analytics_logs
SET
node_type = CASE
WHEN node_type 'Question' THEN 'Statement'
WHEN node_type 'Answer' THEN 'Response'
WHEN node_type = 'Question' THEN 'Statement'
WHEN node_type = 'Answer' THEN 'Response'
ELSE node_type
END;

0 comments on commit 8b230c9

Please sign in to comment.