Sha256: 19fdbf375ec8d801829dc368f975684e135d647fda222314587a0503b04d7ad7
Contents?: true
Size: 354 Bytes
Versions: 185
Compression:
Stored size: 354 Bytes
Contents
class AddMirrorOnSyncToRepositories < ActiveRecord::Migration[4.2] class RepositoryMirrorOnSync < ApplicationRecord self.table_name = "katello_repositories" end def change add_column :katello_repositories, :mirror_on_sync, :boolean, :default => true, :null => false RepositoryMirrorOnSync.update_all(:mirror_on_sync => false) end end
Version data entries
185 entries across 185 versions & 1 rubygems