Skip to content

Commit

Permalink
update version to 6.2
Browse files Browse the repository at this point in the history
Empty Commit
  • Loading branch information
simpat-adam committed Feb 23, 2024
1 parent 0ec8cf1 commit 049eec0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
-- SPDX-License-Identifier: Apache-2.0
-- Licensed to the Ed-Fi Alliance under one or more agreements.
-- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
-- See the LICENSE and NOTICES files in the project root for more information.

IF object_id('util.GetEdFiOdsVersion', 'FN') IS NOT NULL
BEGIN
DROP FUNCTION util.GetEdFiOdsVersion;
END
GO

CREATE FUNCTION util.GetEdFiOdsVersion()
RETURNS VARCHAR(60)
AS
BEGIN
RETURN '6.2'
END
GO
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
CREATE OR REPLACE FUNCTION util.GetEdFiOdsVersion()
RETURNS VARCHAR(60) AS $$
BEGIN
RETURN '7.0';
RETURN '6.2';
END;
$$ LANGUAGE plpgsql;

0 comments on commit 049eec0

Please sign in to comment.