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

F #3600: Fix migrator to 5.12 (#4543)

This commit is contained in:
Vlastimil Holer 2020-04-16 19:21:21 +02:00 committed by GitHub
parent a092b0ad17
commit b9047d25c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ module Migrator
@db.transaction do
@db.fetch('SELECT * FROM old_acl') do |row|
row[:userset] = row.delete[:user]
row[:userset] = row.delete(:user)
@db[:acl].insert(row)
end