1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-04-01 06:50:25 +03:00

Revert "Feature #1326: onedb migrator adds template attribute TEMPLATE_NAME"

This reverts commit d73d349d6fdbaa76a747ebdeacab54a5813cb718.
This commit is contained in:
Ruben S. Montero 2012-12-23 23:30:50 +01:00
parent d73d349d6f
commit 8a58932e05

View File

@ -259,34 +259,6 @@ module Migrator
@db.run "DROP TABLE old_group_pool;"
########################################################################
# Feature #1326
########################################################################
@db.run "ALTER TABLE template_pool RENAME TO old_template_pool;"
@db.run "CREATE TABLE template_pool (oid INTEGER PRIMARY KEY, name VARCHAR(128), body TEXT, uid INTEGER, gid INTEGER, owner_u INTEGER, group_u INTEGER, other_u INTEGER);"
@db.fetch("SELECT * FROM old_template_pool") do |row|
doc = Document.new(row[:body])
doc.root.each_element("TEMPLATE") { |e|
e.add_element("TEMPLATE_NAME").text = row[:name]
}
@db[:template_pool].insert(
:oid => row[:oid],
:name => row[:name],
:body => doc.root.to_s,
:uid => row[:uid],
:gid => row[:gid],
:owner_u => row[:owner_u],
:group_u => row[:group_u],
:other_u => row[:other_u])
end
@db.run "DROP TABLE old_template_pool;"
########################################################################
#
# Banner for the new /var/lib/one/vms directory