Sha256: d44c78f231629a222568160d3e6016f1912ca4b5f9a4399f53a2bad9117ea9bd
Contents?: true
Size: 396 Bytes
Versions: 56
Compression:
Stored size: 396 Bytes
Contents
class UpdateCdnConfigurationType < ActiveRecord::Migration[6.0] class FakeCdnConfiguration < Katello::Model self.table_name = 'katello_cdn_configurations' self.inheritance_column = nil end def change FakeCdnConfiguration.where(type: 'upstream_server').update_all(type: 'network_sync') FakeCdnConfiguration.where(type: 'airgapped').update_all(type: 'export_sync') end end
Version data entries
56 entries across 56 versions & 1 rubygems