-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
Application/EdFi.Ods.Standard/Artifacts/MsSql/Structure/Ods/1390-UpdateVersionTo62.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters