Skip to content

Commit

Permalink
upgrade database version to 2019.08
Browse files Browse the repository at this point in the history
no database structure changes
  • Loading branch information
tpokorra committed Aug 28, 2019
1 parent 4387fce commit a03c69c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
@@ -0,0 +1,44 @@
//
// DO NOT REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
//
// @Authors:
// timop
//
// Copyright 2004-2019 by OM International
//
// This file is part of OpenPetra.org.
//
// OpenPetra.org is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// OpenPetra.org is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with OpenPetra.org. If not, see <http://www.gnu.org/licenses/>.
//
using System;
using System.Data;
using Ict.Common.DB;
using Ict.Common;
using Ict.Common.Data;

namespace Ict.Petra.Server.MSysMan.DBUpgrades
{
/// <summary>
/// Upgrade the database
/// </summary>
public static partial class TDBUpgrade
{
/// Upgrade to version 2019-08
public static bool UpgradeDatabase201907_201908()
{
// there are no changes to the database structure
return true;
}
}
}
2 changes: 1 addition & 1 deletion db/version.txt
@@ -1 +1 @@
2019.07.0-0 2019.08.0-0

0 comments on commit a03c69c

Please sign in to comment.