Skip to content

Commit

Permalink
1480-UpdateEdFiStandardVersionTo52 Added
Browse files Browse the repository at this point in the history
  • Loading branch information
semalaiappan committed Sep 30, 2024
1 parent a403faa commit be407b6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
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.GetEdFiStandardVersion', 'FN') IS NOT NULL
BEGIN
DROP FUNCTION util.GetEdFiStandardVersion;
END
GO

CREATE FUNCTION util.GetEdFiStandardVersion()
RETURNS VARCHAR(60)
AS
BEGIN
RETURN '5.2'
END
GO
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- 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.

CREATE OR REPLACE FUNCTION util.GetEdFiStandardVersion()
RETURNS VARCHAR(60) AS $$
BEGIN
RETURN '5.2';
END;
$$ LANGUAGE plpgsql;

0 comments on commit be407b6

Please sign in to comment.