diff --git a/resources/schemas/dbscripts/sqlserver/snd-23.004-23.005.sql b/resources/schemas/dbscripts/sqlserver/snd-23.004-23.005.sql index 33d20a94..b12a8426 100644 --- a/resources/schemas/dbscripts/sqlserver/snd-23.004-23.005.sql +++ b/resources/schemas/dbscripts/sqlserver/snd-23.004-23.005.sql @@ -1,7 +1,7 @@ EXEC core.fn_dropifexists 'fGetAllSuperPkgs', 'snd', 'function'; go -CREATE FUNCTION [snd].[fGetAllSuperPkgs] +CREATE FUNCTION snd.fGetAllSuperPkgs () RETURNS @expandedSuperPackages TABLE ( @@ -76,4 +76,5 @@ CLOSE @loopCursor; DEALLOCATE @loopCursor; RETURN; -END; \ No newline at end of file +END; +GO