Sha256: b5bd7d8f56bc4b05f4d10e7f94dd9035edf4c5d8cae8a4fb37e7e49469ee7e92
Contents?: true
Size: 1.71 KB
Versions: 10
Compression:
Stored size: 1.71 KB
Contents
class RenameSystemGroupsToHostCollections < ActiveRecord::Migration def change rename_index :katello_key_system_groups, "katello_key_system_groups_pkey", "katello_key_host_collections_pkey" rename_index :katello_key_system_groups, "index_key_system_groups_on_activation_key_id", "index_key_host_collections_on_activation_key_id" rename_index :katello_key_system_groups, "index_key_system_groups_on_system_group_id", "index_key_host_collections_on_host_collection_id" rename_column :katello_key_system_groups, :system_group_id, :host_collection_id rename_table :katello_key_system_groups, :katello_key_host_collections rename_index :katello_system_groups, "katello_system_groups_pkey", "katello_host_collections_pkey" rename_index :katello_system_groups, "index_system_groups_on_name_and_organization_id", "index_host_collections_on_name_and_organization_id" rename_index :katello_system_groups, "index_system_groups_on_organization_id", "index_host_collections_on_organization_id" rename_column :katello_system_groups, :max_systems, :max_content_hosts rename_table :katello_system_groups, :katello_host_collections rename_index :katello_system_system_groups, "katello_system_system_groups_pkey", "katello_system_host_collections_pkey" rename_index :katello_system_system_groups, "index_system_system_groups_on_system_group_id", "index_system_host_collections_on_host_collection_id" rename_index :katello_system_system_groups, "index_system_system_groups_on_system_id", "index_system_host_collections_on_system_id" rename_column :katello_system_system_groups, :system_group_id, :host_collection_id rename_table :katello_system_system_groups, :katello_system_host_collections end end
Version data entries
10 entries across 10 versions & 1 rubygems