From 8d2a2130506cad76c03610c76b1656b30d349899 Mon Sep 17 00:00:00 2001 From: Jaime Melis Date: Wed, 25 Apr 2012 17:50:11 +0200 Subject: [PATCH] Add onedb migrator to 3.4.1 (cherry picked from commit aafdfc0c3093fb91a4bd59323f88739f8a3bce94) --- src/onedb/3.4.0_to_3.4.1.rb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/onedb/3.4.0_to_3.4.1.rb diff --git a/src/onedb/3.4.0_to_3.4.1.rb b/src/onedb/3.4.0_to_3.4.1.rb new file mode 100644 index 0000000000..b11206ad1d --- /dev/null +++ b/src/onedb/3.4.0_to_3.4.1.rb @@ -0,0 +1,29 @@ +# -------------------------------------------------------------------------- # +# Copyright 2002-2012, OpenNebula Project Leads (OpenNebula.org) # +# # +# 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. # +#--------------------------------------------------------------------------- # + +module Migrator + def db_version + "3.4.1" + end + + def one_version + "OpenNebula 3.4.1" + end + + def up + return true + end +end