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

Commit 35d785c

Browse files
author
Jamie Snape
committed
Bump version to 3.4.0
1 parent 6912439 commit 35d785c

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

core/database/mysql/3.2.20.sql renamed to core/database/mysql/3.4.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
22

3-
-- MySQL core database, version 3.2.20
3+
-- MySQL core database, version 3.4.0
44

55
CREATE TABLE IF NOT EXISTS `activedownload` (
66
`activedownload_id` bigint(20) NOT NULL AUTO_INCREMENT,

core/database/pgsql/3.2.20.sql renamed to core/database/pgsql/3.4.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
22

3-
-- PostgreSQL core database, version 3.2.20
3+
-- PostgreSQL core database, version 3.4.0
44

55
SET client_encoding = 'UTF8';
66
SET default_with_oids = FALSE;

core/database/sqlite/3.2.20.sql renamed to core/database/sqlite/3.4.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
22

3-
-- SQLite core database, version 3.2.20
3+
-- SQLite core database, version 3.4.0
44

55
CREATE TABLE IF NOT EXISTS "activedownload" (
66
"activedownload_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,

core/database/upgrade/3.2.20.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,3 @@ public function pgsql()
4343
$this->db->query("ALTER TABLE userapi ALTER apikey TYPE character varying(64);");
4444
}
4545
}
46-

core/database/upgrade/3.4.0.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/*=========================================================================
3+
Midas Server
4+
Copyright Kitware SAS, 26 rue Louis Guérin, 69100 Villeurbanne, France.
5+
All rights reserved.
6+
For more information visit http://www.kitware.com/.
7+
8+
Licensed under the Apache License, Version 2.0 (the "License");
9+
you may not use this file except in compliance with the License.
10+
You may obtain a copy of the License at
11+
12+
http://www.apache.org/licenses/LICENSE-2.0.txt
13+
14+
Unless required by applicable law or agreed to in writing, software
15+
distributed under the License is distributed on an "AS IS" BASIS,
16+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
See the License for the specific language governing permissions and
18+
limitations under the License.
19+
=========================================================================*/
20+
21+
/** Upgrade the core to version 3.4.0. */
22+
class Upgrade_3_4_0 extends MIDASUpgrade
23+
{
24+
}

0 commit comments

Comments
 (0)