Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Bump version to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Mar 16, 2015
1 parent 6912439 commit 35d785c
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

-- MySQL core database, version 3.2.20
-- MySQL core database, version 3.4.0

CREATE TABLE IF NOT EXISTS `activedownload` (
`activedownload_id` bigint(20) NOT NULL AUTO_INCREMENT,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

-- PostgreSQL core database, version 3.2.20
-- PostgreSQL core database, version 3.4.0

SET client_encoding = 'UTF8';
SET default_with_oids = FALSE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

-- SQLite core database, version 3.2.20
-- SQLite core database, version 3.4.0

CREATE TABLE IF NOT EXISTS "activedownload" (
"activedownload_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
Expand Down
1 change: 0 additions & 1 deletion core/database/upgrade/3.2.20.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ public function pgsql()
$this->db->query("ALTER TABLE userapi ALTER apikey TYPE character varying(64);");
}
}

24 changes: 24 additions & 0 deletions core/database/upgrade/3.4.0.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
/*=========================================================================
Midas Server
Copyright Kitware SAS, 26 rue Louis Guérin, 69100 Villeurbanne, France.
All rights reserved.
For more information visit http://www.kitware.com/.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=========================================================================*/

/** Upgrade the core to version 3.4.0. */
class Upgrade_3_4_0 extends MIDASUpgrade
{
}

0 comments on commit 35d785c

Please sign in to comment.