Fix minor error in snippet (#4398)

- Found a snippet missing a `,`
This commit is contained in:
Kevin Cunnane
2019-03-12 12:14:24 -07:00
committed by GitHub
parent 7226f25c67
commit d555dcb6d7

View File

@@ -163,7 +163,7 @@
"\tFROM INFORMATION_SCHEMA.ROUTINES",
"WHERE SPECIFIC_SCHEMA = N'${2:dbo}'",
"\tAND SPECIFIC_NAME = N'${1:StoredProcedureName}'",
"\tAND ROUTINE_TYPE = N'PROCEDURE'"
"\tAND ROUTINE_TYPE = N'PROCEDURE'",
")",
"DROP PROCEDURE ${2:dbo}.${1:StoredProcedureName}",
"GO",