Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Update trigger.stub
Browse files Browse the repository at this point in the history
Remove backticks
  • Loading branch information
mattkingshott authored Sep 20, 2022
1 parent 88adcbe commit 87ca303
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stubs/trigger.stub
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DROP TRIGGER IF EXISTS `{NAME}`;
CREATE TRIGGER `{NAME}`
{TIME} {EVENT} ON `{TABLE}` FOR EACH ROW
DROP TRIGGER IF EXISTS {NAME};
CREATE TRIGGER {NAME}
{TIME} {EVENT} ON {TABLE} FOR EACH ROW
BEGIN
{QUERY}
END
END

0 comments on commit 87ca303

Please sign in to comment.