1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

Increase database version to 5.10.0 (#3277)

This commit is contained in:
Christian González 2019-04-25 18:42:41 +02:00 committed by Ruben S. Montero
parent 31a5b113b0
commit 8bbcfdfc6c
5 changed files with 41 additions and 7 deletions

View File

@ -375,7 +375,7 @@ public:
*/
static string shared_db_version()
{
return "5.6.0";
return "5.10.0";
}
/**
@ -384,7 +384,7 @@ public:
*/
static string local_db_version()
{
return "5.8.0";
return "5.10.0";
}
/**

View File

@ -1499,7 +1499,8 @@ ONEDB_SHARED_MIGRATOR_FILES="src/onedb/shared/2.0_to_2.9.80.rb \
src/onedb/shared/5.3.80_to_5.4.0.rb \
src/onedb/shared/5.4.0_to_5.4.1.rb \
src/onedb/shared/5.4.1_to_5.5.80.rb \
src/onedb/shared/5.5.80_to_5.6.0.rb"
src/onedb/shared/5.5.80_to_5.6.0.rb \
src/onedb/shared/5.6.0_to_5.10.0.rb"
ONEDB_LOCAL_MIGRATOR_FILES="src/onedb/local/4.5.80_to_4.7.80.rb \
src/onedb/local/4.7.80_to_4.9.80.rb \
@ -1515,7 +1516,7 @@ ONEDB_LOCAL_MIGRATOR_FILES="src/onedb/local/4.5.80_to_4.7.80.rb \
src/onedb/local/5.5.80_to_5.6.0.rb \
src/onedb/local/5.6.0_to_5.7.80.rb \
src/onedb/local/5.7.80_to_5.8.0.rb \
src/onedb/local/5.8.0_to_5.9.80.rb"
src/onedb/local/5.8.0_to_5.10.0.rb"
ONEDB_PATCH_FILES="src/onedb/patches/4.14_monitoring.rb \
src/onedb/patches/history_times.rb"

View File

@ -105,13 +105,13 @@ class OneDBBacKEnd
index_sqlite: ["CREATE INDEX state_oid_idx ON vm_pool (state, oid);",
"CREATE INDEX applied_idx ON logdb (applied);"]
},
"5.9.80" => {
"5.10.0" => {
logdb: "log_index BIGINT UNSIGNED PRIMARY KEY, term INTEGER, sqlcmd MEDIUMTEXT, " <<
"timestamp INTEGER, fed_index BIGINT UNSIGNED, applied BOOLEAN"
}
}
LATEST_DB_VERSION = "5.9.80"
LATEST_DB_VERSION = "5.10.0"
def get_schema(type, version = nil)
if !version

View File

@ -29,7 +29,7 @@ include OpenNebula
module Migrator
def db_version
'5.9.80'
'5.10.0'
end
def one_version

View File

@ -0,0 +1,33 @@
# -------------------------------------------------------------------------- #
# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems #
# #
# 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 #
# #
# 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. #
#--------------------------------------------------------------------------- #
include OpenNebula
module Migrator
def db_version
'5.10.0'
end
def one_version
'OpenNebula 5.9.80'
end
def up
true
end
end