From 3725a640ec2724e3fc6589f92d09a9cbb239073f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Fri, 7 Nov 2014 15:50:33 +0100 Subject: [PATCH] Feature #3264: Create new db table in onedb migrator --- include/Nebula.h | 2 +- install.sh | 3 +- src/onedb/local/4.9.80_to_4.11.80.rb | 42 ++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 src/onedb/local/4.9.80_to_4.11.80.rb diff --git a/include/Nebula.h b/include/Nebula.h index 2290e6c71f..be612316a7 100644 --- a/include/Nebula.h +++ b/include/Nebula.h @@ -390,7 +390,7 @@ public: */ static string local_db_version() { - return "4.9.80"; + return "4.11.80"; } /** diff --git a/install.sh b/install.sh index 194e6fb406..35b6d77bab 100755 --- a/install.sh +++ b/install.sh @@ -1181,7 +1181,8 @@ ONEDB_SHARED_MIGRATOR_FILES="src/onedb/shared/2.0_to_2.9.80.rb \ src/onedb/shared/4.5.80_to_4.6.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" + src/onedb/local/4.7.80_to_4.9.80.rb \ + src/onedb/local/4.9.80_to_4.11.80.rb" #------------------------------------------------------------------------------- # Configuration files for OpenNebula, to be installed under $ETC_LOCATION diff --git a/src/onedb/local/4.9.80_to_4.11.80.rb b/src/onedb/local/4.9.80_to_4.11.80.rb new file mode 100644 index 0000000000..df1d437cb0 --- /dev/null +++ b/src/onedb/local/4.9.80_to_4.11.80.rb @@ -0,0 +1,42 @@ +# -------------------------------------------------------------------------- # +# Copyright 2002-2014, OpenNebula Project (OpenNebula.org), C12G Labs # +# # +# 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. # +#--------------------------------------------------------------------------- # + +require 'nokogiri' + +module Migrator + def db_version + "4.11.80" + end + + def one_version + "OpenNebula 4.11.80" + end + + def up + + init_log_time() + + ######################################################################## + # Showback + ######################################################################## + + @db.run "CREATE TABLE vm_showback (vmid INTEGER, year INTEGER, month INTEGER, body MEDIUMTEXT, PRIMARY KEY(vmid, year, month));" + + log_time() + + return true + end +end \ No newline at end of file