Sha256: 0e2d683e195fe5795e3198fa4eb2473a69848c59098e4cd78893992d430d1772
Contents?: true
Size: 385 Bytes
Versions: 43
Compression:
Stored size: 385 Bytes
Contents
class IncreaseCdnLength < ActiveRecord::Migration def up change_column :katello_providers, :repository_url, :string, :limit => 1024 change_column :katello_repositories, :url, :string, :limit => 1024 end def down change_column :katello_providers, :repository_url, :string, :limit => 255 change_column :katello_repositories, :url, :string, :limit => 255 end end
Version data entries
43 entries across 43 versions & 1 rubygems