Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
ogous committed Jan 23, 2025
1 parent e82f9ed commit c35b0a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/migrations/1737541181-update-campaign-for-winner.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RETURNS TRIGGER LANGUAGE plpgsql AS $$
BEGIN
UPDATE ninelives_buys_and_sells_1
SET winner = NEW.identifier
WHERE emitter_addr = NEW.emitter_addr
WHERE emitter_addr = NEW.emitter_addr;

RETURN NEW;
END $$;
Expand Down

0 comments on commit c35b0a3

Please sign in to comment.