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

Commit 87ca303

Browse files
Update trigger.stub
Remove backticks
1 parent 88adcbe commit 87ca303

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

stubs/trigger.stub

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
DROP TRIGGER IF EXISTS `{NAME}`;
2-
CREATE TRIGGER `{NAME}`
3-
{TIME} {EVENT} ON `{TABLE}` FOR EACH ROW
1+
DROP TRIGGER IF EXISTS {NAME};
2+
CREATE TRIGGER {NAME}
3+
{TIME} {EVENT} ON {TABLE} FOR EACH ROW
44
BEGIN
55
{QUERY}
6-
END
6+
END

0 commit comments

Comments
 (0)